8 lines
86 B
C#
8 lines
86 B
C#
public enum MazeDirection
|
|
{
|
|
None,
|
|
Forward,
|
|
Backward,
|
|
Left,
|
|
Right
|
|
} |