Example #1
0
 public void NewGame()
 {
     Square.ResetAllPossible(Grid1);
     Game.SetUpPieces(Grid1);
     Game.Turn       = "Black";
     Game.EnemyColor = "White";
     Game.ShowMoves(Grid1); //shows possible moves
     this.Invalidate();     //repaints to show possible moves
 }