diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 22:47:42 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 22:47:42 +0100 |
commit | 07796bea15a2d5f43766f062379b63fc9e9e1b5d (patch) | |
tree | 2d398f161a9a933176f50779ff164e76c3871f43 /backend/ExpConsumableObject.h | |
parent | af76b9a0ae58dc8c87548053a5bc310ad6be25ce (diff) |
WIP consumables
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); +}; + |