Reduce dependency from common/advancedDetector.h
svn-id: r25156
This commit is contained in:
parent
01a5faa6a0
commit
d3b0ff8ade
12 changed files with 139 additions and 82 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue