diff options
Diffstat (limited to 'engines/cruise/cruise.h')
-rw-r--r-- | engines/cruise/cruise.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/engines/cruise/cruise.h b/engines/cruise/cruise.h index 515238d264..d99860d254 100644 --- a/engines/cruise/cruise.h +++ b/engines/cruise/cruise.h @@ -43,28 +43,30 @@ struct CRUISEGameDescription; class CruiseEngine:public Engine { - protected: +protected: int init(); int go(); void shutdown(); bool initGame(); - public: - CruiseEngine(OSystem * syst); - virtual ~ CruiseEngine(); +public: + CruiseEngine(OSystem * syst); + virtual ~ CruiseEngine(); int getGameType() const; uint32 getFeatures() const; - Common::Language getLanguage() const; - Common::Platform getPlatform() const; + Common::Language getLanguage() const; + Common::Platform getPlatform() const; bool loadSaveDirectory(void); void makeSystemMenu(void); const CRUISEGameDescription *_gameDescription; - private: + Common::RandomSource _rnd; + +private: void initialize(void); bool makeLoad(char *saveName); void mainLoop(int bootScriptIdx); |