24 lines
485 B
C#
Raw Normal View History

2022-06-27 13:02:31 +08:00
#if RPH
namespace LemonUI
{
/// <summary>
/// The alignment of the element to draw.
/// </summary>
public enum Alignment
{
/// <summary>
/// Aligns the element to the Center.
/// </summary>
Center = 0,
/// <summary>
/// Aligns the element to the Left.
/// </summary>
Left = 1,
/// <summary>
/// Aligns the element to the RIght.
/// </summary>
Right = 2,
}
}
#endif