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