#ifndef STICK_HPP #define STICK_HPP #include "Item.hpp" class Stick : public Item { public: Stick(const std::string &name, int maxUses); bool use(Actor &user, Actor &actor); protected: const int _maxUses; int _remainingUses; }; #endif