mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
27 lines
580 B
C++
27 lines
580 B
C++
#include "IGame.h"
|
|
|
|
#include "IW3/GameIW3.h"
|
|
#include "IW4/GameIW4.h"
|
|
#include "IW5/GameIW5.h"
|
|
#include "T5/GameT5.h"
|
|
#include "T6/GameT6.h"
|
|
|
|
#include <cassert>
|
|
|
|
IGame* IGame::GetGameById(GameId gameId)
|
|
{
|
|
static IGame* games[static_cast<unsigned>(GameId::COUNT)]{
|
|
new IW3::Game(),
|
|
new IW4::Game(),
|
|
new IW5::Game(),
|
|
new T5::Game(),
|
|
new T6::Game(),
|
|
};
|
|
|
|
assert(static_cast<unsigned>(gameId) < static_cast<unsigned>(GameId::COUNT));
|
|
auto* result = games[static_cast<unsigned>(gameId)];
|
|
assert(result);
|
|
|
|
return result;
|
|
}
|