11 lines
165 B
C#
11 lines
165 B
C#
namespace RobotAndDonkey.Game;
|
|
|
|
public enum EDirection
|
|
{
|
|
Right = 0,
|
|
TopRight = 1,
|
|
TopLeft = 2,
|
|
Left = 3,
|
|
BottomLeft = 4,
|
|
BottomRight = 5
|
|
} |