summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
blob: 6587f119687e5679ac52dca5b042a7a96a0e0f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef entity_h
#define entity_h

#include "window.hpp"

class Entity
{
	public:
		void Place();

        int getType(){return type;};
        SDL_Rect getRect(){return rect;};
        
        virtual void eat(int bite){};
        virtual int getAmount(void){}; 

	protected:
		int type;
        SDL_Rect rect;
		SDL_Renderer* renderer;
};

#endif