summaryrefslogtreecommitdiffstats
path: root/Game.h
diff options
context:
space:
mode:
Diffstat (limited to 'Game.h')
-rw-r--r--Game.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Game.h b/Game.h
index dbd129a..7960497 100644
--- a/Game.h
+++ b/Game.h
@@ -21,20 +21,26 @@
#define ZOOM_GAME_H_
#include "Renderer.h"
+#include <boost/shared_ptr.hpp>
+#include <string>
namespace Zoom {
+class Level;
class Triangle;
class Game {
public:
Game(bool multisample);
+ bool loadLevel(const std::string &name);
+
void run(int delta);
void render();
private:
Renderer renderer;
+ boost::shared_ptr<Level> level;
float angle;
};