mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
18 lines
235 B
C
18 lines
235 B
C
#pragma once
|
|
|
|
#include "NameTypes.h"
|
|
|
|
enum class EAIParamType : uint8
|
|
{
|
|
Float,
|
|
Int,
|
|
Bool
|
|
// MAX UMETA(Hidden)
|
|
};
|
|
|
|
struct FEnvNamedValue // i dont thin kthis ever changes
|
|
{
|
|
FName ParamName;
|
|
EAIParamType ParamType;
|
|
float Value;
|
|
}; |