aboutsummaryrefslogtreecommitdiff
path: root/sky/debug.h
diff options
context:
space:
mode:
authorRobert Göffringmann2004-12-15 06:48:08 +0000
committerRobert Göffringmann2004-12-15 06:48:08 +0000
commit2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14 (patch)
tree1296b833b4c30432d828a7b87a7bbba8abf54284 /sky/debug.h
parent75ac1363b36158bfab3c51a5b9aafec85ea54d4e (diff)
downloadscummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.tar.gz
scummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.tar.bz2
scummvm-rg350-2308ba8aafcd4d9f4f1ef7c0281177455c8e3e14.zip
moved compacts and related static data out of the scummvm.exe into an external file
(available from www.lavosspawn.de/tmp/sky_cpt.zip) svn-id: r16053
Diffstat (limited to 'sky/debug.h')
-rw-r--r--sky/debug.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sky/debug.h b/sky/debug.h
index 979f41559d..fe53395927 100644
--- a/sky/debug.h
+++ b/sky/debug.h
@@ -31,10 +31,11 @@ namespace Sky {
class Logic;
class Mouse;
class Screen;
+class SkyCompact;
class Debugger : public Common::Debugger<Debugger> {
public:
- Debugger(Logic *logic, Mouse *mouse, Screen *screen);
+ Debugger(Logic *logic, Mouse *mouse, Screen *screen, SkyCompact *skyCompact);
bool showGrid() { return _showGrid; }
protected:
@@ -54,6 +55,7 @@ protected:
Logic *_logic;
Mouse *_mouse;
Screen *_screen;
+ SkyCompact *_skyCompact;
bool _showGrid;
};