22 lines
477 B
C#
22 lines
477 B
C#
|
namespace LemonUI.Menus
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The movement direction of the item change.
|
|||
|
/// </summary>
|
|||
|
public enum Direction
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The Direction is Unknown.
|
|||
|
/// </summary>
|
|||
|
Unknown = 0,
|
|||
|
/// <summary>
|
|||
|
/// The item was moved to the Left.
|
|||
|
/// </summary>
|
|||
|
Left = 1,
|
|||
|
/// <summary>
|
|||
|
/// The item was moved to the Right.
|
|||
|
/// </summary>
|
|||
|
Right = 2,
|
|||
|
}
|
|||
|
}
|