mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
24 lines
523 B
C#
24 lines
523 B
C#
using GlitchyEngine.Core;
|
|
|
|
namespace GlitchyEngine.Graphics.Text;
|
|
|
|
/// <summary>
|
|
/// The horizontal alignment of text.
|
|
/// </summary>
|
|
[EngineClass("GlitchyEngine.Renderer.Text.FontRenderer.HorizontalTextAlignment")]
|
|
public enum HorizontalTextAlignment : byte
|
|
{
|
|
/// <summary>
|
|
/// Aligns the text to the left.
|
|
/// </summary>
|
|
Left,
|
|
/// <summary>
|
|
/// Aligns the text to the right.
|
|
/// </summary>
|
|
Right,
|
|
/// <summary>
|
|
/// Aligns the text in the center.
|
|
/// </summary>
|
|
Center
|
|
}
|