您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
240 B

using System;
namespace RMGUI.GraphView
{
[Flags]
public enum Capabilities
{
Normal = 1 << 0,
Selectable = 1 << 1,
DoesNotCollapse = 1 << 2,
Floating = 1 << 3,
Resizable = 1 << 4,
Movable = 1 << 5,
Deletable = 1 << 6
}
}