示例#1
0
文件: Hero.cs 项目: thedoomx/CSharp
 public int Attack(Spell spell)
 {
     return spell.GetDamage();
 }
示例#2
0
文件: Hero.cs 项目: thedoomx/CSharp
 public void Learn(Spell spell)
 {
     this.spell = spell;
     this.heroSpellDamage = spell.GetDamage();
 }