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

19 行
422 B

namespace RMGUI.GraphView
{
public interface IConnectable
{
Direction direction { get; }
Orientation orientation { get; }
bool highlight { get; set; }
object source { get; }
bool connected { get; set; }
}
public static class ConnectableExtensions
{
public static bool IsConnectable(this IConnectable connectable)
{
return connectable.direction != Direction.Input || !connectable.connected;
}
}
}