#ifndef MAPOBJECT_H #define MAPOBJECT_H #include "Sprite.h" class MapObject : public Sprite { public: MapObject(); // Get the numerical type int getType(); // Set the type void setType(); protected: // The numerical type int type; }; #endif