aboutsummaryrefslogtreecommitdiff
path: root/backend/TeleportConsumableObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/TeleportConsumableObject.h')
-rw-r--r--backend/TeleportConsumableObject.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/TeleportConsumableObject.h b/backend/TeleportConsumableObject.h
new file mode 100644
index 0000000..7456714
--- /dev/null
+++ b/backend/TeleportConsumableObject.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "ConsumableObject.h"
+
+class TeleportConsumableObject : public ConsumableObject {
+ using ConsumableObject::ConsumableObject;
+
+public:
+ virtual void consume(Player & player);
+};
+