1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 01:06:01 +08:00
xNode/Scripts/Interfaces/INodePort.cs
Thor Brigsted aeeeb74290 WIP
2019-07-24 14:37:51 +02:00

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; }
}
}