diff options
| author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-05 22:23:10 +0100 | 
|---|---|---|
| committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-05 22:23:10 +0100 | 
| commit | 63f9cf175480c8f5c41ca4a7fbd350053932c96d (patch) | |
| tree | e4994686599f1fa7150b9b7e1877f632582bc6e8 /src/weapon.hpp | |
| parent | reload works (diff) | |
| download | threshold-63f9cf175480c8f5c41ca4a7fbd350053932c96d.tar.gz threshold-63f9cf175480c8f5c41ca4a7fbd350053932c96d.tar.bz2 threshold-63f9cf175480c8f5c41ca4a7fbd350053932c96d.tar.xz threshold-63f9cf175480c8f5c41ca4a7fbd350053932c96d.tar.zst threshold-63f9cf175480c8f5c41ca4a7fbd350053932c96d.zip | |
longer shotty range, add hit function which does not work
Diffstat (limited to '')
| -rw-r--r-- | src/weapon.hpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/weapon.hpp b/src/weapon.hpp index 902b55f..f117230 100644 --- a/src/weapon.hpp +++ b/src/weapon.hpp @@ -15,7 +15,6 @@ class Weapon {    Sound shot;    Sound reload; -  unsigned int barrel;    unsigned int max; @@ -30,6 +29,7 @@ public:    void refill();    bool empty; +  unsigned int barrel;  };  #endif // WEAPON_H_ | 
