aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gameplay.hpp')
-rw-r--r--src/gameplay.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gameplay.hpp b/src/gameplay.hpp
new file mode 100644
index 0000000..3b611fe
--- /dev/null
+++ b/src/gameplay.hpp
@@ -0,0 +1,27 @@
+#ifndef GAMEPLAY_H_
+#define GAMEPLAY_H_
+
+#include "window.hpp"
+
+class Enemy {
+ float posX;
+ float posY;
+ Vector2 direction;
+ public:
+ Enemy();
+ ~Enemy();
+};
+
+class Game {
+ int nEnemies;
+
+ Enemy * enemies;
+
+ public:
+ Game();
+ ~Game();
+
+ void start() const ;
+};
+
+#endif // GAMEPLAY_H_