aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Weapon.hpp
blob: ef9d3d57c86d0e64ca3a25eacd61baca7abc7fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef WEAPON_HPP
#define WEAPON_HPP

#include "Item.hpp"
#include "Actor.hpp"

class Weapon : public Item
{
protected:
    unsigned _damage;
    unsigned _requiredLevel;
};

#endif