hellbound/meta/enum.meta

54 lines
664 B
Plaintext
Raw Permalink Normal View History

2021-11-26 11:16:25 +03:00
enum EnumPlatform
NONE = 0
IOS = 1
GPLAY = 2
end
enum EnumLevelType
TUTORIAL = 0
COMMON = 1
REWARD = 2
BOSS = 3
PVP = 4
end
enum EnumBuffType
BUFF1 = 0
BUFF2 = 1
BUFF3 = 2
end
enum EnumItemType
CONSUMABLE = 0
Type2 = 1
Type3 = 2
end
enum EnumSlotType
NONE = 0
Slot2 = 1
Slot3 = 2
end
enum EnumShopType
NONE = 0
SKIN = 1
CONSUMABLE = 2
ANIMATION = 3
end
enum EnumGrade
COMMON = 0
LEGENDARY = 1
end
enum EnumConsumable
COIN = 0
KEY = 1
end
enum EnumAndroidStore
GPLAY = 0
AMAZON = 1
end