More player database improvements (#1725)

This commit is contained in:
maybegreat48
2023-07-15 20:37:20 +00:00
committed by GitHub
parent c161ee9413
commit 2b6cb52986
19 changed files with 501 additions and 39 deletions

View File

@ -2019,4 +2019,17 @@ enum class GSType : int32_t
Public,
Max,
Modder = 69 // stand?
};
enum class GameMode : int32_t
{
None = -1,
Mission = 0,
Deathmatch = 1, // or koth
Race = 2,
Survival = 3,
GangAttack = 6,
Golf = 0xB,
Tennis = 0xC,
ShootingRange = 0xD
};