namespace GlitchyEngine.Graphics.Text;
///
/// The horizontal alignment of text.
///
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
}