#ifndef LEVEL_H #define LEVEL_H #include "Player.h" #include "Screen.h" class Level { public: Level(); // Load and prepare a new level void changeLevel(int levelNo); // Moves all the level's items around void move(); // Draw the current scene on the screen void draw(Screen *screen); // The human player Player player; private: // Nothing yet! }; #endif