aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/weapon.hpp6
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_