aboutsummaryrefslogtreecommitdiff
path: root/sky/debug.h
diff options
context:
space:
mode:
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;
};