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

protected:
    const int _maxUses;
    int _remainingUses;

};

#endif