aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/entity.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entity.hpp b/src/entity.hpp
index c114ca7..a38edcf 100644
--- a/src/entity.hpp
+++ b/src/entity.hpp
@@ -27,9 +27,11 @@ class Entity {
Vector2 direction;
Weapon * wp;
Image img;
- Texture2D tex;
+ Texture2D idleTex;
+ Texture2D hurtTex;
Entity();
+ Entity(int const & h);
~Entity();
};