using System; using System.Collections.Generic; using System.Text; namespace Pacman.Classes { public enum DirectionsEnum { Up, Right, Down, Left, Stop } }