Exemple #1
0
 public bool heal_with_stats(IStatsReader healerStats)
 {
     _health += healerStats.get_stength();
     return true;
 }
Exemple #2
0
 public bool attack_with_stats(IStatsReader attackerStats)
 {
     _health -= attackerStats.get_stength();
     return true;
 }