9 lines
192 B
C#
9 lines
192 B
C#
using UnityEditor.Experimental.GraphView;
|
|
|
|
namespace Misaki.GraphView.Editor
|
|
{
|
|
public interface IPortContainer
|
|
{
|
|
public Port GetPort(int index, Direction direction);
|
|
}
|
|
} |