summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-22 01:11:24 +0200
committerAki <please@ignore.pl>2022-04-22 01:11:24 +0200
commit804e71083e4df85c4f0692553de3084f0ed4cd9a (patch)
tree6cfdf65ee7de9c14984677ca4a607b27d9080e00 /GameScreen.h
parent7b8e199b0b6cccdf022bcd072bcdd8ab6c4072b1 (diff)
downloadbullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.zip
bullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.tar.gz
bullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.tar.bz2
Added Stats for lifes points and other kind of gameplay state
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;
};