ue4 enum c 2b 2b

Solutions on MaxInterview for ue4 enum c 2b 2b by the best coders in the world

showing results for - "ue4 enum c 2b 2b"
Giovanni
29 Mar 2017
1UENUM()
2enum class EResourceId : uint8
3{
4	IronOre     UMETA(DisplayName = "Iron Ore"),
5	CopperOre   UMETA(DisplayName = "Copper Ore"),
6	Limestone   UMETA(DisplayName = "Limestone"),
7	Coal        UMETA(DisplayName = "Coal")
8};
Adrien
06 Aug 2016
1UENUM()
2enum Status
3{
4  Stopped     UMETA(DisplayName = "Stopped"),
5  Moving      UMETA(DisplayName = "Moving"),
6  Attacking   UMETA(DisplayName = "Attacking"),
7};