コード例 #1
0
 public Aeronautical()
 {
     Name = "Aeronautics and Space";
     Description = "A fleet of pilots flying aircraft and spacecraft";
     StandardIssueWeapon = new StarFighter();
     Soldiers = new List<ICharacter>();
 }
コード例 #2
0
ファイル: Pilot.cs プロジェクト: mydesignbuddy/DesignPatterns
 public Pilot()
 {
     Weapon = new StarFighter();
 }