feat: dump leaderboard definitions on T6

This commit is contained in:
Future
2024-05-19 09:30:19 +02:00
parent 4139253aac
commit 4fe852b162
8 changed files with 240 additions and 2 deletions

View File

@ -1949,6 +1949,19 @@ namespace T6
LBUPDATE_TYPE_COUNT = 0x3,
};
enum LbTrackType
{
TRK_ALLTIME = 0x0,
TRK_WEEKLY = 0x1,
TRK_MONTHLY = 0x2,
TRK_PRESTIGE_ALLTIME = 0x3,
TRK_PRESTIGE_WEEKLY = 0x4,
TRK_PRESTIGE_MONTHLY = 0x5,
TRK_DAILY = 0x6,
TRK_PRESTIGE_DAILY = 0x7,
TRK_COUNT
};
struct LeaderboardDef
{
const char* name;