mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 23:38:09 -05:00
17 lines
407 B
C++
17 lines
407 B
C++
#pragma once
|
|
#include "Game/IGame.h"
|
|
|
|
class GameT6 : public IGame
|
|
{
|
|
static const std::string NAME;
|
|
std::vector<Zone*> m_zones;
|
|
|
|
public:
|
|
const std::string& GetName() override;
|
|
void AddZone(Zone* zone) override;
|
|
void RemoveZone(Zone* zone) override;
|
|
std::vector<Zone*> GetZones() override;
|
|
std::vector<GameLanguagePrefix> GetLanguagePrefixes() override;
|
|
};
|
|
|
|
extern GameT6 g_GameT6; |