Example #1
0
 public FillBoard(Game game, Saper saper)
 {
     this.createField = new CreateField(saper, game);
     this.game        = game;
     this.saper       = saper;
     Fill();
 }
Example #2
0
 public ReadBoard(Game game, Saper saper, List <Field> fieldList)
 {
     this.createField = new CreateField(saper, game);
     this.game        = game;
     this.saper       = saper;
     this.fieldList   = fieldList;
     Read();
 }