13 lines
171 B
Lua
13 lines
171 B
Lua
-- auto exported UENUM while compiling
|
|
|
|
-- sorted by enum name asc
|
|
|
|
---@enum EPlayerStartType
|
|
EPlayerStartType = {
|
|
Default = 0,
|
|
Team1 = 1,
|
|
Team2 = 2,
|
|
};
|
|
|
|
|