Exemple #1
0
 public Game(int width, int height, int mines)
 {
     this.grid   = Grid.Generate(width, height, mines);
     this.width  = width;
     this.height = height;
     this.mines  = mines;
     this.state  = State.Ongoing;
 }