summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.hpp')
-rw-r--r--inc/entity.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/inc/entity.hpp b/inc/entity.hpp
index d02f689..5941a9c 100644
--- a/inc/entity.hpp
+++ b/inc/entity.hpp
@@ -2,17 +2,13 @@
#define entity_h
#include "window.hpp"
-#include "location.hpp"
class Entity
{
public:
- void Init(Window m);
- void Init(Window m, Location z);
void Place();
int getType(){return type;};
- Location getLocation(){return L;};
SDL_Rect getRect(){return rect;};
virtual void eat(void){};
@@ -21,7 +17,6 @@ class Entity
protected:
int type;
SDL_Rect rect;
- Location L;
SDL_Renderer* renderer;
};