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