18 lines
319 B
C#
18 lines
319 B
C#
|
namespace Dashboard
|
||
|
{
|
||
|
public enum Origin
|
||
|
{
|
||
|
Center = 0,
|
||
|
|
||
|
Left = (1 << 0),
|
||
|
Top = (1 << 1),
|
||
|
Right = (1 << 2),
|
||
|
Bottom = (1 << 3),
|
||
|
|
||
|
TopLeft = Top | Left,
|
||
|
BottomLeft = Bottom | Left,
|
||
|
BottomRight = Bottom | Right,
|
||
|
TopRight = Top | Right,
|
||
|
}
|
||
|
}
|