diff options
author | Strangerke | 2013-02-07 18:37:13 +0100 |
---|---|---|
committer | Strangerke | 2013-02-07 18:37:13 +0100 |
commit | dd9474593fdba0b0308cbd4e0a0afb093fb994e5 (patch) | |
tree | 0a78649141dd4da118dc910b893c45a467c3f031 | |
parent | 0f25a607493406d9f6be6b2c7a4bad5fb874886e (diff) | |
download | scummvm-rg350-dd9474593fdba0b0308cbd4e0a0afb093fb994e5.tar.gz scummvm-rg350-dd9474593fdba0b0308cbd4e0a0afb093fb994e5.tar.bz2 scummvm-rg350-dd9474593fdba0b0308cbd4e0a0afb093fb994e5.zip |
HOPKINS: Improve private/public scope in DialogsManager
-rw-r--r-- | engines/hopkins/dialogs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/hopkins/dialogs.h b/engines/hopkins/dialogs.h index 7608af2377..d0fd69250f 100644 --- a/engines/hopkins/dialogs.h +++ b/engines/hopkins/dialogs.h @@ -37,27 +37,27 @@ class HopkinsEngine; class DialogsManager { private: HopkinsEngine *_vm; + + void showSaveLoad(int a1); + int searchSavegames(); public: + byte *_inventWin1; + byte *_inventBuf2; + bool _removeInventFl; + bool _inventDisplayedFl; + bool _inventFl; int _inventX, _inventY; int _inventWidth, _inventHeight; - bool _inventFl; - bool _inventDisplayedFl; - bool _removeInventFl; - byte *_inventWin1; - byte *_inventBuf2; -public: DialogsManager(); ~DialogsManager(); void setParent(HopkinsEngine *vm); + void inventAnim(); + void showInventory(); void showLoadGame(); void showSaveGame(); - void showSaveLoad(int a1); void showOptionsDialog(); - void showInventory(); - int searchSavegames(); void testDialogOpening(); - void inventAnim(); }; } // End of namespace Hopkins |