aboutsummaryrefslogtreecommitdiff
path: root/gameDetecter.h
diff options
context:
space:
mode:
Diffstat (limited to 'gameDetecter.h')
-rw-r--r--gameDetecter.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/gameDetecter.h b/gameDetecter.h
new file mode 100644
index 0000000000..c66a39f443
--- /dev/null
+++ b/gameDetecter.h
@@ -0,0 +1,24 @@
+class GameDetecter {
+public:
+ void detectMain(int argc, char **argv);
+ void parseCommandLine(int argc, char **argv);
+ bool detectGame(void);
+ char *getGameName(void);
+
+ bool _fullScreen;
+ uint16 _debugMode;
+ uint16 _noSubtitles;
+ uint16 _bootParam;
+ unsigned int _scale;
+ char *_gameDataPath;
+ int _gameTempo;
+ void *_soundEngine;
+ int _midi_driver;
+ int _videoMode;
+ char *_exe_name;
+ byte _gameId;
+ const char *_gameText;
+ uint32 _features;
+ uint16 _soundCardType;
+
+};