summaryrefslogtreecommitdiffhomepage
path: root/Stage.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-25 00:18:36 +0200
committerAki <please@ignore.pl>2022-04-25 00:18:36 +0200
commit63c64254a80564e11987ba4af289cf8d47774668 (patch)
tree046abd3203e9e236f7937e7d7cc55a65f82e4278 /Stage.h
parent88d53cab4e10aed6cdae443aa66136add99562bb (diff)
downloadbullethell2022-63c64254a80564e11987ba4af289cf8d47774668.zip
bullethell2022-63c64254a80564e11987ba4af289cf8d47774668.tar.gz
bullethell2022-63c64254a80564e11987ba4af289cf8d47774668.tar.bz2
Added move constraints
Diffstat (limited to 'Stage.h')
-rw-r--r--Stage.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Stage.h b/Stage.h
index fcb69b3..e5b4172 100644
--- a/Stage.h
+++ b/Stage.h
@@ -2,6 +2,7 @@
#include <memory>
+#include "Player.h"
#include "Stats.h"
@@ -10,5 +11,6 @@ struct Stage
virtual ~Stage() = default;
virtual void update(float dt) = 0;
virtual void draw() = 0;
+ Player m_player;
std::shared_ptr<Stats> m_stats;
};