This commit is contained in:
h z
2024-07-12 14:32:16 +01:00
parent f59c6edc39
commit 574d00d4b7
29 changed files with 130 additions and 43 deletions

View File

@@ -1,4 +1,5 @@
using Godot;
using Nocturnis.DataStructures.DataTypeOptions;
using Nocturnis.DataStructures.DataTypes;
namespace Nocturnis.DataStructures.DataPortGroups;
@@ -6,7 +7,7 @@ namespace Nocturnis.DataStructures.DataPortGroups;
public interface IDataPortGroup
{
DataType SelectedType { get; set; }
DataType[] TypeOptions { get; set; }
DataTypeOption TypeOptions { get; set; }
void Inference();
string Description { get; set; }