aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-11-01 14:08:55 +0000
committerNicola Mettifogo2007-11-01 14:08:55 +0000
commit288f47e0341bd80302ef5585f6ef0da67d2738f5 (patch)
tree61532f3cef8f9ae7e517eb136599e3d8ec9923d1 /engines/parallaction/parallaction.h
parent512e57c69017578e9cbf2d623467933d93cf4aaf (diff)
downloadscummvm-rg350-288f47e0341bd80302ef5585f6ef0da67d2738f5.tar.gz
scummvm-rg350-288f47e0341bd80302ef5585f6ef0da67d2738f5.tar.bz2
scummvm-rg350-288f47e0341bd80302ef5585f6ef0da67d2738f5.zip
* Merged object Menu into Parallaction_ns.
* Some preliminary refactoring of ex-menu code. svn-id: r29354
Diffstat (limited to 'engines/parallaction/parallaction.h')
-rw-r--r--engines/parallaction/parallaction.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index 0f4cd12253..49d3915455 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -185,7 +185,6 @@ void waitUntilLeftClick();
class Debugger;
class Gfx;
-class Menu;
class SoundMan;
@@ -667,8 +666,6 @@ public:
private:
- Menu* _menu;
-
void initFonts();
void freeFonts();
@@ -905,6 +902,15 @@ protected:
DECLARE_UNQUALIFIED_INSTRUCTION_OPCODE(move);
DECLARE_UNQUALIFIED_INSTRUCTION_OPCODE(endscript);
+ void guiStart();
+ void guiSelectCharacter();
+ void guiSplash();
+ void guiNewGame();
+ uint16 guiChooseLanguage();
+ uint16 guiSelectGame();
+ int guiGetSelectedBlock(const Common::Point &p, Common::Rect& r);
+
+
};