diff options
Diffstat (limited to 'src/weapon.hpp')
-rw-r--r-- | src/weapon.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/weapon.hpp b/src/weapon.hpp index 1b6b57a..61d3ace 100644 --- a/src/weapon.hpp +++ b/src/weapon.hpp @@ -15,6 +15,9 @@ class Weapon { Sound shot; Sound reload; + unsigned int barrel; + unsigned int max; + float const ⦥ unsigned int const &damage; @@ -22,7 +25,8 @@ public: Weapon(float const &rg, unsigned int const &dmg, const char *s, const char *r); ~Weapon(); - void bang() const ; + int bang(); + void refill(); }; #endif // WEAPON_H_ |