diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 16:36:37 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 16:36:37 +0100 |
commit | bcb489c3b869fb6c15ee26d511f5042b8ce698ae (patch) | |
tree | cd663d747e0ed00d57c299e85ad193971ed8febc /src/weapon.hpp | |
parent | add headers (diff) | |
download | threshold-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.hpp | 4 |
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(); }; |