aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_enemyslingshot.hpp
blob: bcaec09f48632b5f9c818c674961638b9834be71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*********************************/
/*   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);
};

#endif