aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/entity.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/entity.hpp b/src/entity.hpp
new file mode 100644
index 0000000..49d98b6
--- /dev/null
+++ b/src/entity.hpp
@@ -0,0 +1,15 @@
+#ifndef ENEMY_H_
+#define ENEMY_H_
+
+#include "window.hpp"
+
+class Entity {
+ public:
+ float posX;
+ float posY;
+ Vector2 direction;
+ Entity();
+ ~Entity();
+};
+
+#endif // ENEMY_H_