You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
649 B
C#
30 lines
649 B
C#
namespace DNSD_Controls
|
|
{
|
|
/// <summary>
|
|
/// 图形的方向
|
|
/// </summary>
|
|
// Token: 0x02000036 RID: 54
|
|
public enum GraphDirection
|
|
{
|
|
/// <summary>
|
|
/// 向上
|
|
/// </summary>
|
|
// Token: 0x04000285 RID: 645
|
|
Upward = 1,
|
|
/// <summary>
|
|
/// 向下
|
|
/// </summary>
|
|
// Token: 0x04000286 RID: 646
|
|
Downward,
|
|
/// <summary>
|
|
/// 向左
|
|
/// </summary>
|
|
// Token: 0x04000287 RID: 647
|
|
Leftward,
|
|
/// <summary>
|
|
/// 向右
|
|
/// </summary>
|
|
// Token: 0x04000288 RID: 648
|
|
Rightward
|
|
}
|
|
} |