aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_shotty.hpp
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-01-07 00:21:25 +0100
committersalaaad2 <arthurdurant263@gmail.com>2022-01-07 00:21:25 +0100
commite5b95c4b1559adac1283360903941350acc72e0e (patch)
tree0da038bed7fd9dba1f60e8296b5fc0a9c54682d1 /src/wp_shotty.hpp
parentweapon as an abstract class. now make more weapons (diff)
downloadthreshold-e5b95c4b1559adac1283360903941350acc72e0e.tar.gz
threshold-e5b95c4b1559adac1283360903941350acc72e0e.tar.bz2
threshold-e5b95c4b1559adac1283360903941350acc72e0e.tar.xz
threshold-e5b95c4b1559adac1283360903941350acc72e0e.tar.zst
threshold-e5b95c4b1559adac1283360903941350acc72e0e.zip
almost there
Diffstat (limited to '')
-rw-r--r--src/wp_shotty.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp_shotty.hpp b/src/wp_shotty.hpp
index a01891f..bbeb112 100644
--- a/src/wp_shotty.hpp
+++ b/src/wp_shotty.hpp
@@ -16,7 +16,7 @@ class wp_shotty : public AWeapon {
wp_shotty(float const &rg, unsigned int const &dmg, unsigned int const & mag, const char *s, const char *r);
~wp_shotty();
- int bang() ;
+ int bang(std::vector<Entity> * enemies, Vector2 playerDirection, Vector2 playerPosition) ;
};