#ifndef PLATFORM_H #define PLATFORM_H #include "MapObject.h" class Platform : public MapObject { public: Platform(); private: // Nothing yet! }; #endif