using GlitchyEngine.Core;
namespace GlitchyEngine.Graphics.Text;
///
/// The horizontal alignment of text.
///
[EngineClass("GlitchyEngine.Renderer.Text.FontRenderer.HorizontalTextAlignment")]
public enum HorizontalTextAlignment : byte
{
///
/// Aligns the text to the left.
///
Left,
///
/// Aligns the text to the right.
///
Right,
///
/// Aligns the text in the center.
///
Center
}