aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_v2.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-20 15:47:11 +0000
committerJohannes Schickel2008-04-20 15:47:11 +0000
commitf173041811398817ffce870d30ef3b87d1302736 (patch)
tree78e43d204662641a5d687cbc184ac60913ac870d /engines/kyra/kyra_v2.h
parent38319954d1035a7ec8df335c88d455a4042a94fc (diff)
downloadscummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.tar.gz
scummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.tar.bz2
scummvm-rg350-f173041811398817ffce870d30ef3b87d1302736.zip
- moved kyra functor code to common/func.h
- adapted debugger code to use functor code from common/func.h - adapted kyra engine to use functor code from common/func.h svn-id: r31614
Diffstat (limited to 'engines/kyra/kyra_v2.h')
-rw-r--r--engines/kyra/kyra_v2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/kyra_v2.h b/engines/kyra/kyra_v2.h
index 10953a71a3..d63f8d6e99 100644
--- a/engines/kyra/kyra_v2.h
+++ b/engines/kyra/kyra_v2.h
@@ -28,12 +28,13 @@
#include "kyra/kyra.h"
#include "kyra/script.h"
+#include "kyra/script_tim.h"
#include "kyra/screen_v2.h"
#include "kyra/text_v2.h"
#include "kyra/gui_v2.h"
-#include "kyra/util.h"
#include "common/list.h"
+#include "common/func.h"
namespace Kyra {
@@ -99,7 +100,6 @@ enum kNestedSequencesDemo {
class WSAMovieV2;
class KyraEngine_v2;
class TextDisplayer_v2;
-class TIMInterpreter;
class Debugger_v2;
struct TIM;
@@ -329,7 +329,7 @@ protected:
void update();
void updateWithText();
- Functor0Mem<void, KyraEngine_v2> _updateFunctor;
+ Common::Functor0Mem<void, KyraEngine_v2> _updateFunctor;
void updateMouse();