UGCProjects/SoloKing/Script/Common/ue_enum_custom.lua

28 lines
444 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 RankingListPeriodType
RankingListPeriodType = {
DailyReset = 0,
WeeklyReset = 1,
MonthlyReset = 2,
CustomizeReset = 3,
};
---@enum RankingListResetType
RankingListResetType = {
CycleRankList = 0,
NotCycleRankList = 1,
};
---@enum RankingListSortType
RankingListSortType = {
LargeValuePrefer = 0,
SmallValuePrefer = 1,
};