aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_shotty.hpp
blob: a01891f5d3ff05d147d3a931c5515417235613cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*********************************/
/*   THRESHOLD        (  //      */
/*   shotty            ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef WP_SHOTTY_H_
#define WP_SHOTTY_H_

#include "weapon.hpp"

class wp_shotty : public AWeapon {
    public:
        wp_shotty(float const &rg, unsigned int const &dmg, unsigned int const & mag, const char *s, const char *r);
        ~wp_shotty();

        int bang() ;
};


#endif