summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h
new file mode 100644
index 0000000..15f2f15
--- /dev/null
+++ b/src/player.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include "movinggameobject.h"
+#include <string>
+
+using namespace std;
+
+class Player : public MovingGameObject {
+
+ float last_time_shot;
+
+public:
+
+ Player(float pos_x, float pos_y, float size_x, float size_y, float orientation, string texture, float speed);
+ virtual ~Player();
+
+ void update() override;
+ void draw() override;
+
+}; \ No newline at end of file