aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/weapon.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/weapon.hpp b/src/weapon.hpp
index 72d719f..9a3f875 100644
--- a/src/weapon.hpp
+++ b/src/weapon.hpp
@@ -11,7 +11,9 @@
class Weapon {
public:
- Weapon();
+ float const & range;
+ unsigned int const & damage;
+ Weapon(float const & rg, unsigned int const & dmg);
~Weapon();
};