namespace LemonUI.Menus
{
///
/// The movement direction of the item change.
///
public enum Direction
{
///
/// The Direction is Unknown.
///
Unknown = 0,
///
/// The item was moved to the Left.
///
Left = 1,
///
/// The item was moved to the Right.
///
Right = 2,
}
}