#ifndef WEAPON_HPP #define WEAPON_HPP #include "Item.hpp" #include "Actor.hpp" class Weapon : public Item { protected: unsigned _damage; unsigned _requiredLevel; }; #endif