1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#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