summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
blob: a7b7f58105f1a9523587c4d60776f501b2df0992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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 void impregnate(void){};
        virtual bool getGender(void){};
        virtual int  getAmount(void){}; 

	protected:
		int type;
        int gender;
        bool pregnate;
        SDL_Rect rect;
		SDL_Renderer* renderer;
};

#endif