summaryrefslogtreecommitdiff
path: root/Level.h
diff options
context:
space:
mode:
Diffstat (limited to 'Level.h')
-rw-r--r--Level.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Level.h b/Level.h
index c2334b0..a56b734 100644
--- a/Level.h
+++ b/Level.h
@@ -2,8 +2,7 @@
#define LEVEL_H
#include "Player.h"
-#include "SDL/SDL.h"
-#include "SDL/SDL_image.h"
+#include "Screen.h"
class Level {
public:
@@ -16,7 +15,7 @@ class Level {
void move();
// Draw the current scene on the screen
- void draw(SDL_Surface *screen);
+ void draw(Screen *screen);
// The human player
Player player;