using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Moving_pacman_object { public enum Direction { Up, Right, Left, Down, } }