summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
blob: 0eb8f60a218d5117ab6081864646df7ea0a23dbe (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
28
#ifndef entity_h
#define entity_h

#include "window.hpp"
#include "dna.hpp"

class Entity
{
	public:
		void Place();

        int getType(){return type;};
        SDL_Rect getRect(){return rect;};
        
        virtual void eat(int bite){};
        virtual void impregnate(Dna D){};
        virtual bool getGender(void){};
        virtual int  getAmount(void){}; 

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

#endif