diff options
Diffstat (limited to 'source/ui/TextAlignment.cs')
| -rw-r--r-- | source/ui/TextAlignment.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/ui/TextAlignment.cs b/source/ui/TextAlignment.cs new file mode 100644 index 0000000..1f92828 --- /dev/null +++ b/source/ui/TextAlignment.cs @@ -0,0 +1,10 @@ +using System; + +[Flags] +public enum TextAlignment { + Center = 0, + Left = 1, + Right = 2, + Top = 4, + Bottom = 8 +}
\ No newline at end of file |
