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