16 lines
184 B
C#
16 lines
184 B
C#
|
namespace Nerfed.Runtime.Graphics;
|
||
|
|
||
|
public enum HorizontalAlignment
|
||
|
{
|
||
|
Left,
|
||
|
Center,
|
||
|
Right
|
||
|
}
|
||
|
|
||
|
public enum VerticalAlignment
|
||
|
{
|
||
|
Baseline,
|
||
|
Top,
|
||
|
Middle,
|
||
|
Bottom
|
||
|
}
|