aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_enemyslingshot.hpp
blob: f481b6296c02c72515469ca4a14cce3d4ad2f671 (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        (  //      */
/*   enemysling        ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef WP_ENEMYSLING_H_
#define WP_ENEMYSLING_H_

#include "weapon.hpp"

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

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

#endif