示例#1
0
 private void ClickStartButton()
 {
     MineCount      = 99;
     num_cell_count = 0;
     scaned_list.Clear();
     Operator.Instance.LeftClick(ButtonRect.Center().X, ButtonRect.Center().Y);
     for (int i = 0; i < CellCount.Width; i++)
     {
         for (int j = 0; j < CellCount.Height; j++)
         {
             Cells[i, j].Status = CellStatus.Idle;
         }
     }
 }