示例#1
0
 // Explains to the player the rules of the game and how to act in order to play.
 public static void rules()
 {
     System.Threading.Thread.Sleep(500);
     Console.WriteLine("But before we get started let's go over the rules.");
     System.Threading.Thread.Sleep(500);
     Console.WriteLine("The rules are very simple:");
     System.Threading.Thread.Sleep(500);
     Console.WriteLine("You can choose an empty space on the board from 1 to 9.");
     System.Threading.Thread.Sleep(500);
     Console.WriteLine("Just write the number of the wanted space:");
     System.Threading.Thread.Sleep(500);
     Board.printBoardBegining();
     System.Threading.Thread.Sleep(500);
 }