Answers for "ue4 enum c++"

C++
1

ue4 enum c++

UENUM()
enum class EResourceId : uint8
{
	IronOre     UMETA(DisplayName = "Iron Ore"),
	CopperOre   UMETA(DisplayName = "Copper Ore"),
	Limestone   UMETA(DisplayName = "Limestone"),
	Coal        UMETA(DisplayName = "Coal")
};
Posted by: Guest on September-23-2021
0

ue4 c++ enum

UENUM()
enum Status
{
  Stopped     UMETA(DisplayName = "Stopped"),
  Moving      UMETA(DisplayName = "Moving"),
  Attacking   UMETA(DisplayName = "Attacking"),
};
Posted by: Guest on May-22-2020

Browse Popular Code Answers by Language