aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Stick.hpp
blob: 724e36dc52ef515408b9f21c2098cfa6f2bcbc04 (plain)
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);
    bool use(Actor &user, Actor &actor);

protected:
    const int _maxUses;
    int _remainingUses;

};

#endif