Reduce dependency from common/advancedDetector.h

svn-id: r25156
This commit is contained in:
Eugene Sandulenko 2007-01-21 20:24:38 +00:00
parent 01a5faa6a0
commit d3b0ff8ade
12 changed files with 139 additions and 82 deletions

View file

@ -30,6 +30,19 @@
#include "parallaction/parallaction.h"
namespace Parallaction {
struct PARALLACTIONGameDescription {
Common::ADGameDescription desc;
int gameType;
uint32 features;
};
int Parallaction::getGameType() const { return _gameDescription->gameType; }
uint32 Parallaction::getFeatures() const { return _gameDescription->features; }
Common::Language Parallaction::getLanguage() const { return _gameDescription->desc.language; }
Common::Platform Parallaction::getPlatform() const { return _gameDescription->desc.platform; }
static GameList GAME_detectGames(const FSList &fslist);
}