コード例 #1
0
 public Knights()
 {
     Name = "Jedi Knights";
     Description = "Elite warriors that are highly skilled with the force and lightsabers.";
     StandardIssueWeapon = new LightSaber();
     Soldiers = new List<ICharacter>();
 }
コード例 #2
0
ファイル: Jedi.cs プロジェクト: mydesignbuddy/DesignPatterns
 public Jedi()
 {
     Weapon = new LightSaber();
 }