summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'GameScreen.h')
-rw-r--r--GameScreen.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/GameScreen.h b/GameScreen.h
index b821d0c..2b5152f 100644
--- a/GameScreen.h
+++ b/GameScreen.h
@@ -4,6 +4,7 @@
#include "Bullets.h"
#include "ExampleGenerator.h"
+#include "Player.h"
#include "Screen.h"
@@ -14,7 +15,7 @@ public:
void update(float dt) override;
void draw() override;
private:
- Vector2 m_pos;
+ Player m_player;
ExampleGenerator m_generator;
ConstantVelocitySystem m_const;
};