コード例 #1
0
 public static void ScoreBoardScreen()
 {
     ConsoleBuffer.Results(GameState.winner);
     PrintBuffer.PrintScore();
     UserInput.ScoreBoardScreen();
 }
コード例 #2
0
 // This is the main drawing function to pace the player tokens on the board.
 // The majority of the game happens here.
 public static void PlaceToken(int num)
 {
     ConsoleBuffer.PlaceToken(num, player);
     PrintBuffer.PlaceToken();
 }
コード例 #3
0
 public static void GameOver()
 {
     ConsoleBuffer.GameOver();
     PrintBuffer.PrintNewFrame();
 }