예제 #1
0
 public Footman(string name, IWroiter writer) : base(name, writer)
 {
 }
예제 #2
0
 public Engine(IReader reader, IWroiter writer)
 {
     this.reader   = reader;
     this.writer   = writer;
     this.soldiers = new List <Soldier>();
 }
예제 #3
0
 public Soldier(string name, IWroiter writer)
 {
     this.Name   = name;
     this.Writer = writer;
 }
예제 #4
0
 public RoyalGuard(string name, IWroiter writer) : base(name, writer)
 {
 }
예제 #5
0
파일: King.cs 프로젝트: Valentin9003/CSharp
 public King(string name, IWroiter writer)
 {
     this.Name   = name;
     this.writer = writer;
 }