ZoneCommon: Change name of global variable for the T6 Game instance

This commit is contained in:
Jan
2019-12-29 16:39:29 +01:00
parent c488e4c714
commit a0d4e87b8e
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
using namespace T6;
GameT6 game_t6;
GameT6 g_GameT6;
void GameT6::AddZone(Zone* zone)
{

View File

@ -11,4 +11,4 @@ public:
std::vector<Zone*> GetZones() override;
};
extern GameT6 game_t6;
extern GameT6 g_GameT6;