diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-14 16:40:11 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-14 16:40:11 +0100 |
commit | 7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349 (patch) | |
tree | a85c1a47e1f41c6c6530f3fe3cb6ce66a2ea61c7 /src/weapon.cpp | |
parent | strange behavior... I WILL find out whats going on ! (diff) | |
download | threshold-7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349.tar.gz threshold-7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349.tar.bz2 threshold-7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349.tar.xz threshold-7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349.tar.zst threshold-7a0ec30b5444b9f07ddeaa6943edaf5bd02e0349.zip |
enemy slingshot is functional
Diffstat (limited to '')
-rw-r--r-- | src/weapon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/weapon.cpp b/src/weapon.cpp index a8553e3..4e56117 100644 --- a/src/weapon.cpp +++ b/src/weapon.cpp @@ -16,7 +16,7 @@ AWeapon::AWeapon(float const rg, double const& cd, const char* s, const char* r, - std::string const & nm) + std::string const& nm) : range(rg), damage(dmg), max(mag), cooldown(cd), name(nm) { shot = LoadSound(s); reload = LoadSound(r); |