summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.hpp')
-rw-r--r--inc/entity.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/entity.hpp b/inc/entity.hpp
index a7b7f58..0eb8f60 100644
--- a/inc/entity.hpp
+++ b/inc/entity.hpp
@@ -2,6 +2,7 @@
#define entity_h
#include "window.hpp"
+#include "dna.hpp"
class Entity
{
@@ -12,7 +13,7 @@ class Entity
SDL_Rect getRect(){return rect;};
virtual void eat(int bite){};
- virtual void impregnate(void){};
+ virtual void impregnate(Dna D){};
virtual bool getGender(void){};
virtual int getAmount(void){};