aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Stick.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Stick.hpp')
-rw-r--r--src/main/headers/Stick.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/headers/Stick.hpp b/src/main/headers/Stick.hpp
index 4ed2b45..724e36d 100644
--- a/src/main/headers/Stick.hpp
+++ b/src/main/headers/Stick.hpp
@@ -5,6 +5,13 @@
class Stick : public Item
{
+public:
+ Stick(const std::string &name);
+ bool use(Actor &user, Actor &actor);
+
+protected:
+ const int _maxUses;
+ int _remainingUses;
};