mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 09:05:44 +00:00
16 lines
203 B
C++
16 lines
203 B
C++
#include "GameT6.h"
|
|
#include "T6.h"
|
|
|
|
using namespace T6;
|
|
|
|
GameT6 game_t6;
|
|
|
|
void GameT6::AddZone(Zone* zone)
|
|
{
|
|
m_zones.push_back(zone);
|
|
}
|
|
|
|
std::vector<Zone*> GameT6::GetZones()
|
|
{
|
|
return m_zones;
|
|
} |