diff options
Diffstat (limited to 'engines/macventure/gui.h')
-rw-r--r-- | engines/macventure/gui.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/macventure/gui.h b/engines/macventure/gui.h index 9316f91fd3..7ffe199344 100644 --- a/engines/macventure/gui.h +++ b/engines/macventure/gui.h @@ -59,7 +59,8 @@ enum WindowReference { kOutConsoleWindow = 0x82, kSelfWindow = 0x83, kExitsWindow = 0x84, - kDiplomaWindow = 0x85 + kDiplomaWindow = 0x85, + kInventoryWindow = 0x90 // Not in the files, but here for convenience }; enum MVWindowType { @@ -148,6 +149,7 @@ private: // Attributes Graphics::MacWindow *_selfWindow; Graphics::MacWindow *_exitsWindow; Graphics::MacWindow *_diplomaWindow; + Graphics::MacWindow *_inventoryWindow; Graphics::Menu *_menu; private: // Methods @@ -159,6 +161,9 @@ private: // Methods // Loaders bool loadMenus(); + bool loadWindows(); + void loadInventoryWindow(); + bool loadControls(); void loadBorder(Graphics::MacWindow * target, Common::String filename, bool active); // Drawers |