public static string ReadUserName()
        {
            ConsoleMessagePrinter.Print("Please enter your name for the top scoreboard: ");

            string userName = Console.ReadLine();

            return(userName);
        }
        public static string ReadInput()
        {
            ConsoleMessagePrinter.Print("Enter a row and column: ");

            string userInput = Console.ReadLine();

            return(userInput);
        }