2018-03-04 23:53:55 +08:00
|
|
|
namespace CustomNPCFramework.Framework.Enums
|
2018-02-24 15:16:10 +08:00
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
/// <summary>An enum to be used to signify directions. The enum order corresponds to the same order Stardew Valley uses for directions.</summary>
|
2018-02-24 15:16:10 +08:00
|
|
|
public enum Direction
|
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
/// <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
|
2018-02-24 15:16:10 +08:00
|
|
|
}
|
|
|
|
}
|