diff options
Diffstat (limited to 'src/engine.h')
-rw-r--r-- | src/engine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine.h b/src/engine.h index 74f2ce9d..25367436 100644 --- a/src/engine.h +++ b/src/engine.h @@ -28,9 +28,9 @@ extern int camera_x, camera_y; +class Graphics; class Image; class Map; -class Spriteset; /** * Game engine that does the main drawing. @@ -66,7 +66,7 @@ class Engine /** * Draws everything on the screen. */ - void draw(); + void draw(Graphics *graphics); private: Map *mCurrentMap; |