28 lines
444 B
Lua
28 lines
444 B
Lua
|
-- auto exported UENUM while compiling
|
||
|
|
||
|
-- sorted by enum name asc
|
||
|
|
||
|
---@enum RankingListPeriodType
|
||
|
RankingListPeriodType = {
|
||
|
DailyReset = 0,
|
||
|
WeeklyReset = 1,
|
||
|
MonthlyReset = 2,
|
||
|
CustomizeReset = 3,
|
||
|
};
|
||
|
|
||
|
|
||
|
---@enum RankingListResetType
|
||
|
RankingListResetType = {
|
||
|
CycleRankList = 0,
|
||
|
NotCycleRankList = 1,
|
||
|
};
|
||
|
|
||
|
|
||
|
---@enum RankingListSortType
|
||
|
RankingListSortType = {
|
||
|
LargeValuePrefer = 0,
|
||
|
SmallValuePrefer = 1,
|
||
|
};
|
||
|
|
||
|
|