14 lines
341 B
C#
14 lines
341 B
C#
using Godot;
|
|
using Nocturnis.DataStructures.DataTypeOptions;
|
|
using Nocturnis.DataStructures.DataTypes;
|
|
|
|
namespace Nocturnis.DataStructures.DataPortGroups;
|
|
|
|
public interface IDataPortGroup
|
|
{
|
|
DataType SelectedType { get; set; }
|
|
DataTypeOption TypeOptions { get; set; }
|
|
|
|
void Inference();
|
|
string Description { get; set; }
|
|
} |