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