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};
1UENUM()
2enum Status
3{
4 Stopped UMETA(DisplayName = "Stopped"),
5 Moving UMETA(DisplayName = "Moving"),
6 Attacking UMETA(DisplayName = "Attacking"),
7};