aboutsummaryrefslogtreecommitdiff
path: root/sword1/sword1.h
diff options
context:
space:
mode:
authorRobert Göffringmann2003-12-22 01:20:47 +0000
committerRobert Göffringmann2003-12-22 01:20:47 +0000
commitfd4417e6bbe0a571e51c1cb82e9941c455b9ce76 (patch)
treebfd5125d1a9975ebe82e0d796ca3c8f3f7a23aeb /sword1/sword1.h
parent6b0fb6585cf31bbd341a7da8fa60be5f09eb2381 (diff)
downloadscummvm-rg350-fd4417e6bbe0a571e51c1cb82e9941c455b9ce76.tar.gz
scummvm-rg350-fd4417e6bbe0a571e51c1cb82e9941c455b9ce76.tar.bz2
scummvm-rg350-fd4417e6bbe0a571e51c1cb82e9941c455b9ce76.zip
changed the way the control panel is started
svn-id: r11844
Diffstat (limited to 'sword1/sword1.h')
-rw-r--r--sword1/sword1.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sword1/sword1.h b/sword1/sword1.h
index fa3d866454..73663515f5 100644
--- a/sword1/sword1.h
+++ b/sword1/sword1.h
@@ -35,6 +35,7 @@ class MemMan;
class ObjectMan;
class SwordMenu;
class SwordMusic;
+class SwordControl;
struct SystemVars {
// todo: move these to a better place
@@ -64,7 +65,7 @@ private:
void initialize(void);
void checkCd(void);
- void mainLoop(void);
+ uint8 mainLoop(void);
void startPositions(int32 startNumber);
uint16 _mouseX, _mouseY, _mouseState;
@@ -82,5 +83,6 @@ private:
SwordSound *_sound;
SwordMenu *_menu;
SwordMusic *_music;
+ SwordControl *_control;
static const uint8 _cdList[TOTAL_SECTIONS];
};