summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.hpp')
-rw-r--r--inc/entity.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/inc/entity.hpp b/inc/entity.hpp
index 6587f11..a7b7f58 100644
--- a/inc/entity.hpp
+++ b/inc/entity.hpp
@@ -12,10 +12,14 @@ class Entity
SDL_Rect getRect(){return rect;};
virtual void eat(int bite){};
- virtual int getAmount(void){};
+ virtual void impregnate(void){};
+ virtual bool getGender(void){};
+ virtual int getAmount(void){};
protected:
int type;
+ int gender;
+ bool pregnate;
SDL_Rect rect;
SDL_Renderer* renderer;
};