aboutsummaryrefslogtreecommitdiff
path: root/source/ui/TextAlignment.cs
blob: 1f928284a8a1c8f340961de7b6e66d2b26d89a9e (plain)
1
2
3
4
5
6
7
8
9
10
using System;

[Flags]
public enum TextAlignment {
    Center = 0,
    Left = 1,
    Right = 2,
    Top = 4,
    Bottom = 8
}