9 lines
142 B
C++
9 lines
142 B
C++
|
//Virtual base class for entities
|
||
|
|
||
|
#include"entity.h"
|
||
|
|
||
|
SDL_Rect Entity::getRectangle(){
|
||
|
//std::cout << rect.w << std::endl;
|
||
|
return rect;
|
||
|
};
|