13 lines
206 B
C#
13 lines
206 B
C#
|
|
namespace MaddoShared;
|
|||
|
|
|
|||
|
|
public enum Orientations
|
|||
|
|
{
|
|||
|
|
TopLeft = 1,
|
|||
|
|
TopRight = 2,
|
|||
|
|
BottomRight = 3,
|
|||
|
|
BottomLeft = 4,
|
|||
|
|
LeftTop = 5,
|
|||
|
|
RightTop = 6,
|
|||
|
|
RightBottom = 7,
|
|||
|
|
LftBottom = 8,
|
|||
|
|
}
|