diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-07 00:21:25 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-07 00:21:25 +0100 |
commit | e5b95c4b1559adac1283360903941350acc72e0e (patch) | |
tree | 0da038bed7fd9dba1f60e8296b5fc0a9c54682d1 /src/wp_shotty.hpp | |
parent | weapon as an abstract class. now make more weapons (diff) | |
download | threshold-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.hpp | 2 |
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) ; }; |