aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_hof.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-04 15:56:28 +0000
committerJohannes Schickel2008-05-04 15:56:28 +0000
commite45a9d42e26c70d9eeb3bfa11408bc0d33c7b69b (patch)
treea42ba3e90c3e1bb92ec4926152bf8f8a7cc70213 /engines/kyra/kyra_hof.h
parentc15ad0e373db42e2d9ca8d37c9ba799c6556c85b (diff)
downloadscummvm-rg350-e45a9d42e26c70d9eeb3bfa11408bc0d33c7b69b.tar.gz
scummvm-rg350-e45a9d42e26c70d9eeb3bfa11408bc0d33c7b69b.tar.bz2
scummvm-rg350-e45a9d42e26c70d9eeb3bfa11408bc0d33c7b69b.zip
- Shared checkInput code between kyra2 and kyra3
- Debugger related cleanup svn-id: r31868
Diffstat (limited to 'engines/kyra/kyra_hof.h')
-rw-r--r--engines/kyra/kyra_hof.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/kyra/kyra_hof.h b/engines/kyra/kyra_hof.h
index 42cdd57ae7..b24ea02262 100644
--- a/engines/kyra/kyra_hof.h
+++ b/engines/kyra/kyra_hof.h
@@ -100,7 +100,6 @@ enum kNestedSequencesDemo {
class WSAMovieV2;
class KyraEngine_HoF;
class TextDisplayer_HoF;
-class Debugger_v2;
struct TIM;
@@ -192,7 +191,7 @@ struct ActiveItemAnim {
};
class KyraEngine_HoF : public KyraEngine_v2 {
-friend class Debugger_v2;
+friend class Debugger_HoF;
friend class TextDisplayer_HoF;
friend class GUI_HoF;
public:
@@ -201,6 +200,7 @@ public:
Screen *screen() { return _screen; }
Screen_v2 *screen_v2() const { return _screen; }
+ GUI_v2 *gui_v2() const { return _gui; }
virtual TextDisplayer *text() { return _text; }
int language() const { return _lang; }
protected:
@@ -289,7 +289,6 @@ protected:
Screen_HoF *_screen;
TextDisplayer_HoF *_text;
- Debugger_v2 *_debugger;
TIMInterpreter *_tim;
uint8 *_mouseSHPBuf;
@@ -332,7 +331,6 @@ protected:
int _mouseState;
- int checkInput(Button *buttonList, bool mainLoop = false);
void handleInput(int x, int y);
bool handleInputUnkSub(int x, int y);