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