feat(GTA/Enums): Added other gamestates

This commit is contained in:
Yimura 2022-01-26 14:01:38 +01:00
parent d762e9e69f
commit 884c0147ba

View File

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