Data Type

This commit is contained in:
h z
2024-07-11 11:21:29 +01:00
parent 2955aaf1db
commit 5b46cce212
29 changed files with 388 additions and 112 deletions

View File

@@ -1,11 +1,13 @@
using Godot;
using Nocturnis.DataStructures.DataTypes;
namespace Nocturnis.DataStructures.DataPortGroups;
public interface IDataPortGroup
{
StringName SelectedType { get; set; }
StringName[] TypeOptions { get; set; }
DataType SelectedType { get; set; }
DataType[] TypeOptions { get; set; }
void Inference();
string Description { get; set; }
}