24 lines
334 B
Lua
24 lines
334 B
Lua
|
-- auto exported UENUM while compiling
|
||
|
|
||
|
-- sorted by enum name asc
|
||
|
|
||
|
---@enum EPlayerStartType
|
||
|
EPlayerStartType = {
|
||
|
Default = 0,
|
||
|
Attack = 1,
|
||
|
Defend = 2,
|
||
|
};
|
||
|
|
||
|
|
||
|
---@enum EPlaceItemType
|
||
|
EPlaceItemType = {
|
||
|
SmallBunker = 0,
|
||
|
BigBunker = 1,
|
||
|
Slope = 2,
|
||
|
Launch = 3,
|
||
|
LandMine = 4,
|
||
|
Flamethrower = 5,
|
||
|
};
|
||
|
|
||
|
|