aboutsummaryrefslogtreecommitdiff
path: root/backend/WeaponObject.cpp
blob: ac7defd7998d0355f88dc86b62a183fd547b49ee (plain)
1
2
3
4
5
6
7
8
9
10
#include "WeaponObject.h"

void WeaponObject::set_damage_min(int damage_min) {
	this->damage_min = damage_min;
}

void WeaponObject::set_damage_max(int damage_max) {
	this->damage_max = damage_max;
}