15 lines
215 B
C#
15 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Pacman_refactored.Enums
|
|
{
|
|
public enum Direction
|
|
{
|
|
Up,
|
|
Down,
|
|
Left,
|
|
Right,
|
|
None
|
|
}
|
|
}
|