ZoneCommon: List zone content in the order it was loaded

This commit is contained in:
Jan
2020-02-19 14:10:50 +01:00
parent a7b59ea3d7
commit f0b66f0a35
11 changed files with 123 additions and 116 deletions

View File

@ -5,6 +5,13 @@ using namespace T6;
GameT6 g_GameT6;
const std::string GameT6::NAME = "T6";
const std::string& GameT6::GetName()
{
return NAME;
}
void GameT6::AddZone(Zone* zone)
{
m_zones.push_back(zone);