aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_assaultrifle.hpp
blob: 9c66d91213f422b6cd77a02ef6cc6bd94263f2e5 (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_ASSAULTRIFLE_H_
#define WP_ASSAULTRIFLE_H_

#include "weapon.hpp"

class wp_assaultrifle : public AWeapon {
   public:
    wp_assaultrifle(const char* s, const char* r);
    ~wp_assaultrifle();

    int bang(std::vector<Entity>* enemies, Entity* player);
    Projectile const& getProjectile() const;
};

#endif