27 lines
436 B
C#
27 lines
436 B
C#
namespace MPUIKIT
|
|
{
|
|
public enum DrawShape {
|
|
None = 0,
|
|
Circle,
|
|
Triangle,
|
|
Rectangle,
|
|
Pentagon,
|
|
Hexagon,
|
|
NStarPolygon
|
|
}
|
|
|
|
public enum GradientType {
|
|
Linear,
|
|
Corner,
|
|
Radial
|
|
}
|
|
|
|
public enum MaterialMode {
|
|
Dynamic,
|
|
Shared
|
|
}
|
|
|
|
public enum CornerStyleType {
|
|
Sharp, Rounded, Cropped, BoxCut, CircleCut
|
|
}
|
|
} |