blob: c7d4074a82aa6300dd3b8f9d83571a2a4d11f208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*********************************/
/* THRESHOLD ( // */
/* shotty ( )/ */
/* by salade )(/ */
/* ________________ ( /) */
/* ()__)____________))))) :^} */
/*********************************/
#ifndef WP_SHOTTY_H_
#define WP_SHOTTY_H_
#include "weapon.hpp"
class wp_shotty : public AWeapon {
public:
wp_shotty(const char* s, const char* r);
~wp_shotty();
int bang(std::vector<Entity>* enemies, Entity* player);
};
#endif
|