summaryrefslogtreecommitdiff
path: root/Hazard.h
diff options
context:
space:
mode:
authorLuke Bratch <l_bratch@yahoo.co.uk>2010-11-24 19:57:03 +0000
committerLuke Bratch <l_bratch@yahoo.co.uk>2010-11-24 19:57:03 +0000
commit3383e8be9001826bf0d09f1fb73ad5013cc8627e (patch)
tree27be0f78ab8672a7187d517c73b4ee22817369cc /Hazard.h
Initial commit
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