f37369cdda
Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
249 B
C#
16 lines
249 B
C#
namespace HSUI.Enums
|
|
{
|
|
public enum DrawAnchor
|
|
{
|
|
Center = 0,
|
|
Left = 1,
|
|
Right = 2,
|
|
Top = 3,
|
|
TopLeft = 4,
|
|
TopRight = 5,
|
|
Bottom = 6,
|
|
BottomLeft = 7,
|
|
BottomRight = 8
|
|
}
|
|
}
|