예제 #1
0
파일: Program.cs 프로젝트: ColdSauce/Snake
        static void Main(string[] args)
        {
            Snake snake = new Snake();
            ConsoleKeyInfo key = new ConsoleKeyInfo();
            Console.BackgroundColor = ConsoleColor.DarkGreen;
            Console.ForegroundColor = ConsoleColor.Black;
            while (true)
            {
                System.Threading.ThreadPool.QueueUserWorkItem(delegate
                {
                    key = Console.ReadKey();
                }, null);
                snake.testKeys(key);
                Location.printAtLocation("*",snake.getLoc());
                System.Threading.Thread.Sleep(25);

            }
        }