blob: a9383cc100c4d16c917b1460b93968ef8f60288f (
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(const char* s, const char* r);
~wp_shotty();
int bang(std::vector<Entity>* enemies, Entity* player);
Projectile const& getProjectile() const;
};
#endif
|