제공된 코드를 이용하여 스네이크 게임을 제작해야하는 과제입니다.제공 코드는 다음과 같습니다.더보기using System;using System.Collections.Generic;using System.Linq;using System.Threading;class Program{ static void Main(string[] args) { // 뱀의 초기 위치와 방향을 설정하고, 그립니다. Point p = new Point(4, 5, '*'); Snake snake = new Snake(p, 4, Direction.RIGHT); snake.Draw(); // 음식의 위치를 무작위로 생성하고, 그립니다. FoodCreat..