#ifndef BULLET_HPP #define BULLET_HPP #include "Item.hpp" #include "RangedWeapon.hpp" class Bullet : protected Item { public: virtual bool use(RangedWeapon &weapon); virtual bool decreaseAmount(unsigned qnt); }; #endif