aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/entity.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entity.hpp b/src/entity.hpp
index 995c0b4..190df40 100644
--- a/src/entity.hpp
+++ b/src/entity.hpp
@@ -1,14 +1,25 @@
+/*********************************/
+/* THRESHOLD ( // */
+/* entityh ( )/ */
+/* by salade )(/ */
+/* ________________ ( /) */
+/* ()__)____________))))) :^} */
+/*********************************/
+
#ifndef ENEMY_H_
#define ENEMY_H_
#include "window.hpp"
+#include "weapon.hpp"
+
class Entity {
public:
int hp;
float posX;
float posY;
Vector2 direction;
+ Weapon * wp;
Entity();
~Entity();
};