#if RPH
namespace LemonUI
{
///
/// The alignment of the element to draw.
///
public enum Alignment
{
///
/// Aligns the element to the Center.
///
Center = 0,
///
/// Aligns the element to the Left.
///
Left = 1,
///
/// Aligns the element to the RIght.
///
Right = 2,
}
}
#endif