public static void ScoreBoardScreen()
 {
     ConsoleBuffer.Results(GameState.winner);
     PrintBuffer.PrintScore();
     UserInput.ScoreBoardScreen();
 }
 // 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();
 }
 public static void GameOver()
 {
     ConsoleBuffer.GameOver();
     PrintBuffer.PrintNewFrame();
 }