Exemple #1
0
 /*
  * public void PlayerAction(string[] options)
  * {
  *  for(int i = 0; i < options.Length;i++)
  *  {
  *      Console.WriteLine("Option " + i + ": " + options[i]);
  *  }
  *
  *  string chosenoption = Console.ReadLine();
  *
  *  switch(chosenoption)
  *  {
  *      default:
  *          break;
  *
  *      case "0":
  *          break;
  *
  *  }
  * }
  */
 public void PrintState()
 {
     Console.Clear();
     Console.WriteLine(Params.BORDER);
     Console.WriteLine("{0}´s turn. Round {1} out of {2}.", ActivePlayer.Name, CurrentTurn, MaxTurns);
     P1.PrintStats();
     P2.PrintStats();
     Console.WriteLine(Params.BORDER);
 }