#include #include "MapObject.h" MapObject::MapObject() { std::cout << "MapObject::MapObject(): MapObject created.\n"; isVisible = true; } int MapObject::getType() { return type; }