summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'GameScreen.h')
-rw-r--r--GameScreen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/GameScreen.h b/GameScreen.h
index 5b43512..dd0a615 100644
--- a/GameScreen.h
+++ b/GameScreen.h
@@ -6,6 +6,7 @@
#include "Screen.h"
#include "Stage.h"
+#include "Stats.h"
class GameScreen : public Screen
@@ -16,4 +17,5 @@ public:
void draw() override;
private:
std::unique_ptr<Stage> m_stage;
+ std::shared_ptr<Stats> m_stats;
};