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/ConsumableObject.h | |
parent | af76b9a0ae58dc8c87548053a5bc310ad6be25ce (diff) |
WIP consumables
Diffstat (limited to 'backend/ConsumableObject.h')
-rw-r--r-- | backend/ConsumableObject.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/backend/ConsumableObject.h b/backend/ConsumableObject.h index 3b4a2ce..0ecd073 100644 --- a/backend/ConsumableObject.h +++ b/backend/ConsumableObject.h @@ -1,9 +1,23 @@ #pragma once #include "Object.h" +#include "Range.h" + +class Player; class ConsumableObject : public Object { using Object::Object; +public: + virtual void consume(Player & player) = 0; + +public: + void set_potency(const Range<int> & range); + Range<int> get_potency() const; + +private: + int potency_min = 0; + int potency_max = 0; + }; |