#include "Bullet.hpp" bool Bullet::decreaseAmount(int qnt) { if (_amount >= qnt) { _amount = _amount - qnt; return true; } else { return false; } }