aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Bullet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Bullet.hpp')
-rw-r--r--src/main/headers/Bullet.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/headers/Bullet.hpp b/src/main/headers/Bullet.hpp
index b12c614..db5cdff 100644
--- a/src/main/headers/Bullet.hpp
+++ b/src/main/headers/Bullet.hpp
@@ -2,12 +2,11 @@
#define BULLET_HPP
#include "Item.hpp"
-#include "RangedWeapon.hpp"
-class Bullet : protected Item
+class Bullet : public Item
{
public:
- virtual bool use(RangedWeapon &weapon);
+ virtual bool use() { return false; }
virtual bool decreaseAmount(unsigned qnt);
};