Exemple #1
0
 public GameController(
     IWriter writer,
     IReader reader,
     IApplicationInterface appInterface,
     IDrawShip drawShip)
 {
     this.writer       = writer;
     this.reader       = reader;
     this.appInterface = appInterface;
     this.drawShip     = drawShip;
 }
Exemple #2
0
 public GameControllerMock(IWriter writer, IReader reader, IApplicationInterface appInterface, IDrawShip drawShip) : base(writer, reader, appInterface, drawShip)
 {
 }