19 lines
613 B
C#
19 lines
613 B
C#
namespace CustomNPCFramework.Framework.Enums
|
|
{
|
|
/// <summary>An enum to be used to signify directions. The enum order corresponds to the same order Stardew Valley uses for directions.</summary>
|
|
public enum Direction
|
|
{
|
|
/// <summary>Used to signify something to face/move up.</summary>
|
|
up = 0,
|
|
|
|
/// <summary>Used to signify something to face/move right.</summary>
|
|
right = 1,
|
|
|
|
/// <summary>Used to signify something to face/move down.</summary>
|
|
down = 2,
|
|
|
|
/// <summary>Used to signify something to face/move left.</summary>
|
|
left = 3
|
|
}
|
|
}
|