diff options
Diffstat (limited to 'src/main/cpp/Bullet.cpp')
-rw-r--r-- | src/main/cpp/Bullet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/cpp/Bullet.cpp b/src/main/cpp/Bullet.cpp index c856213..412b5ef 100644 --- a/src/main/cpp/Bullet.cpp +++ b/src/main/cpp/Bullet.cpp @@ -1,6 +1,6 @@ #include "Bullet.hpp" -bool Bullet::decreaseAmount(int qnt) +bool Bullet::decreaseAmount(unsigned qnt) { if (_amount >= qnt) { _amount = _amount - qnt; |