aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.hpp
blob: 1b6b57a3404b22aa8c40608b27a935aea7cb092a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*********************************/
/*   THRESHOLD        (  //      */
/*   weaponh           ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef WEAPON_H_
#define WEAPON_H_

#include "raylib.h"

class Weapon {
  Sound shot;
  Sound reload;

  float const ⦥
  unsigned int const &damage;

public:
  Weapon(float const &rg, unsigned int const &dmg, const char *s, const char *r);
  ~Weapon();

  void bang() const ;
};

#endif // WEAPON_H_