summaryrefslogtreecommitdiff
path: root/Hazard.h
diff options
context:
space:
mode:
Diffstat (limited to 'Hazard.h')
-rw-r--r--Hazard.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Hazard.h b/Hazard.h
new file mode 100644
index 0000000..4f635d2
--- /dev/null
+++ b/Hazard.h
@@ -0,0 +1,14 @@
+#ifndef HAZARD_H
+#define HAZARD_H
+
+#include "MapObject.h"
+
+class Hazard : public MapObject {
+ public:
+ Hazard();
+
+ private:
+ // Nothing yet!
+};
+
+#endif