aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_enemyslingshot.hpp
blob: 92fff7fbe7f54459f8f70a7ae13b88fc2a1a1801 (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);
    ~wp_enemysling();

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

#endif