platform-test/entity.cpp

9 lines
142 B
C++
Raw Normal View History

2017-04-29 18:43:17 +00:00
//Virtual base class for entities
#include"entity.h"
SDL_Rect Entity::getRectangle(){
//std::cout << rect.w << std::endl;
return rect;
};