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