Files
Project-Reboot-3.0/Project Reboot 3.0/EnvQueryTypes.h
2023-05-18 16:34:17 -04:00

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;
};