Live Config
Loading...
Searching...
No Matches
LiveConfigStructTest.h
1// Copyright (c) 2026 Nicholas Arthur
2// Licensed under the MIT License
3#pragma once
4
5#include "CoreMinimal.h"
6#include "LiveconfigStructTest.generated.h"
7
8USTRUCT(BlueprintType)
10{
11 GENERATED_BODY()
12
13 UPROPERTY()
14 FString SomeString;
15
16 UPROPERTY()
17 int32 SomeInt = 0;
18
19 UPROPERTY()
20 float SomeFloat = 0.0f;
21
22 UPROPERTY()
23 bool SomeBool = false;
24};
Definition LiveConfigStructTest.h:10