aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.cpp
blob: c876481750852d345801ad00ba36d0287538bd88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*********************************/
/*   THRESHOLD        (  //      */
/*   weapon            ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#include "weapon.hpp"

Weapon::Weapon(float const & rg, unsigned int const & dmg) :
    range(rg), damage(dmg)
{}

Weapon::~Weapon() {}