diff options
-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 |