コード例 #1
0
ファイル: Wizard.cs プロジェクト: pozhidaevsa/middleearth
 public Wizard(String name, Horse horse) : base(name, 20)
 {
     {
         this.OwnHorse = horse;
     }
 }
コード例 #2
0
ファイル: Rohhirim.cs プロジェクト: pozhidaevsa/middleearth
 public Rohhirim(String name, int power, Horse horse)
     : base(name, power)
 {
     this.OwnHorse = horse;
 }