Example #1
0
        static void Main(string[] args)
        {
            GameState.EnterName();
            Console.CursorVisible = false;
            Console.Clear();

            GameState gameState = new GameState();

            while (true)
            {
                gameState.Draw();
                gameState.draw_comments();
                ConsoleKeyInfo consoleKeyInfo = Console.ReadKey();
                gameState.PressedKey(consoleKeyInfo);
            }
        }