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