blob: 4a68e2ccac4eb2e97ce5a89ed5be7ecfd8c25dcf (
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 ( // */
/* rifle ( )/ */
/* by salade )(/ */
/* ________________ ( /) */
/* ()__)____________))))) :^} */
/*********************************/
#ifndef WP_NADELAUNCHER_H_
#define WP_NADELAUNCHER_H_
#include "weapon.hpp"
class wp_nadelauncher : public AWeapon {
public:
wp_nadelauncher(const char* s, const char* r);
virtual ~wp_nadelauncher();
int bang(std::vector<Entity>* enemies, Entity* player);
Projectile const& getProjectile() const;
};
#endif
|