예제 #1
0
파일: Snake.cs 프로젝트: lihac92/snake
        internal void Move()
        {
            Point1 tail = pList.First();

            pList.Remove(tail);
            Point1 head = GetNextPoint();

            pList.Add(head);

            tail.Clear();
            head.Draw();
        }