Files
Nocturnis/src/DataStructures/DataPortGroups/IDataPortGroup.cs
2024-07-12 14:32:16 +01:00

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