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