Exemple #1
0
 public void addHealth(int value) {
   npcData.setHealth(npcData.getHealth() + value);
 }
Exemple #2
0
 public void addHappiness(double value) {
   npcData.setHappiness(npcData.getHappiness() + value);
 }
Exemple #3
0
 /** @return the unitType */
 public UnitType getUnitType() {
   return npcData.getUnitType();
 }