10 lines
96 B
C#
10 lines
96 B
C#
namespace Snake.Core;
|
|
|
|
public enum Direction
|
|
{
|
|
Up,
|
|
Down,
|
|
Left,
|
|
Right
|
|
}
|