From 03885192b9ff7d3c5e2dcfd98aefd21e9b62f603 Mon Sep 17 00:00:00 2001 From: majortom6 Date: Sat, 18 Feb 2017 09:28:58 -0600 Subject: general refractoring --- inc/entity.hpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'inc/entity.hpp') diff --git a/inc/entity.hpp b/inc/entity.hpp index 0eb8f60..1bb0405 100644 --- a/inc/entity.hpp +++ b/inc/entity.hpp @@ -7,22 +7,22 @@ class Entity { public: - void Place(); - - int getType(){return type;}; - SDL_Rect getRect(){return rect;}; + void Place(); + + int getType(){return type;}; + virtual bool getGender(void){}; + virtual int getAmount(void){}; + SDL_Rect getRect(){return rect;}; - virtual void eat(int bite){}; - virtual void impregnate(Dna D){}; - virtual bool getGender(void){}; - virtual int getAmount(void){}; + virtual void eat(int bite){}; + virtual void impregnate(Dna D){}; protected: - int type; - int gender; - bool pregnate; - SDL_Rect rect; - SDL_Renderer* renderer; + int type; + int gender; + bool pregnate; + SDL_Rect rect; + SDL_Renderer* renderer; }; #endif -- cgit v1.2.3