diff options
Diffstat (limited to 'src/main/headers/Bullet.hpp')
-rw-r--r-- | src/main/headers/Bullet.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/headers/Bullet.hpp b/src/main/headers/Bullet.hpp index 6ab5dbe..b12c614 100644 --- a/src/main/headers/Bullet.hpp +++ b/src/main/headers/Bullet.hpp @@ -2,12 +2,13 @@ #define BULLET_HPP #include "Item.hpp" +#include "RangedWeapon.hpp" class Bullet : protected Item { public: virtual bool use(RangedWeapon &weapon); - virtual bool decreaseAmount(int qnt); + virtual bool decreaseAmount(unsigned qnt); }; #endif |