feat(GTA/Enums): Added other gamestates

This commit is contained in:
Yimura 2022-01-26 14:01:38 +01:00
parent 2f7b8d425b
commit 8247370a72
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -3,7 +3,13 @@
enum class eGameState : std::uint32_t enum class eGameState : std::uint32_t
{ {
Playing = 0 Playing,
Died,
Arrested,
FailedMission,
LeftGame,
Respawn,
InMPCutScene
}; };
constexpr auto MAX_PLAYERS = 32; constexpr auto MAX_PLAYERS = 32;