aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/cpp/Stick.cpp
blob: 0dd7190991f135f20f78f3b0bc35a29e922d3930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "Stick.hpp"

Stick::Stick(const std::string &name, int maxUses) : Item(Item::Type::STICK, name), _maxUses(maxUses)
{
    _remainingUses = _maxUses;
}

bool Stick::use(Actor &user, Actor &actor)
{
    // TODO remove placeholder
    return true;       
}