iw3 basis

This commit is contained in:
Jan
2021-04-12 19:18:55 +02:00
parent 62d9309922
commit 1267b8aa7b
76 changed files with 3722 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#pragma once
#include "Game/IGame.h"
class GameIW3 : public IGame
{
std::vector<Zone*> m_zones;
public:
std::string GetFullName() override;
std::string GetShortName() override;
void AddZone(Zone* zone) override;
void RemoveZone(Zone* zone) override;
std::vector<Zone*> GetZones() override;
std::vector<GameLanguagePrefix> GetLanguagePrefixes() override;
};
extern GameIW3 g_GameIW3;