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