mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Slightly improved text renderer
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace GlitchyEngine.Graphics.Text;
|
||||
|
||||
/// <summary>
|
||||
/// The horizontal alignment of text.
|
||||
/// </summary>
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user