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