mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 01:06:01 +08:00
17 lines
386 B
C#
17 lines
386 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace XNode {
|
|
public enum IO { Input, Output }
|
|
|
|
public interface INodePort {
|
|
string fieldName { get; }
|
|
INode node { get; }
|
|
List<INodePort> GetConnections();
|
|
IO direction { get; }
|
|
ConnectionType connectionType { get; }
|
|
TypeConstraint typeConstraint { get; }
|
|
bool dynamic { get; }
|
|
}
|
|
} |