37 lines
554 B
Lua
Raw Permalink Normal View History

2025-01-04 23:00:19 +08:00
-- auto exported UENUM while compiling
-- sorted by enum name asc
---@enum EPlayerStartType
EPlayerStartType = {
Default = 0,
Level1 = 1,
Level2 = 2,
Level3 = 3,
Level4 = 4,
Level5 = 5,
Level6 = 6,
Level7 = 7,
Level8 = 8,
Level9 = 9,
Level10 = 10,
Level11 = 11,
Level12 = 12,
Level13 = 13,
Level14 = 14,
Level15 = 15,
};
---@enum EPlaceItemType
EPlaceItemType = {
SmallBunker = 0,
BigBunker = 1,
Slope = 2,
Launch = 3,
LandMine = 4,
Flamethrower = 5,
};