22 #ifndef SCUMM_HE_MOONBASE_AI_WEAPON_H 23 #define SCUMM_HE_MOONBASE_AI_WEAPON_H 39 void setTypeID(
int typeID) { _typeID = typeID; }
40 void setDamage(
float damage) { _damage = damage; }
41 void setRadius(
int radius) { _radius = radius; }
42 void setCost(
int cost) { _cost = cost; }
44 int getTypeID() {
return _typeID; }
45 float getDamage() {
return _damage; }
46 int getRadius() {
return _radius; }
47 int getCost() {
return _cost; }
Definition: ai_weapon.h:27