summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.hpp')
-rw-r--r--inc/entity.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/inc/entity.hpp b/inc/entity.hpp
deleted file mode 100644
index 20c87aa..0000000
--- a/inc/entity.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef entity_h
-#define entity_h
-
-#include "dna.hpp"
-#include "rectangle.hpp"
-
-#include "opengl/graphicsdata.hpp"
-
-class Entity
-{
- public:
- void Place();
-
- virtual void eat(int bite){};
- virtual void impregnate(DNA D){};
-
- int getType(){return type;};
- virtual bool getGender(void){};
- virtual int getAmount(void){};
- Rectangle getRectangle(){return rect;};
- GraphicsData getGFXD(){return gfxData;};
-
-
- protected:
- int type;
- int gender;
- bool pregnate;
- Rectangle rect;
- GraphicsData gfxData;
-};
-
-#endif