aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.hpp
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-01-04 16:36:37 +0100
committersalaaad2 <arthurdurant263@gmail.com>2022-01-04 16:36:37 +0100
commitbcb489c3b869fb6c15ee26d511f5042b8ce698ae (patch)
treecd663d747e0ed00d57c299e85ad193971ed8febc /src/weapon.hpp
parentadd headers (diff)
downloadthreshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.gz
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.bz2
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.xz
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.zst
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.zip
map read from file
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();
};