Upgrade structure of code base

This commit is contained in:
h z
2024-07-03 12:20:08 +08:00
parent d382481cd4
commit 42e06a0d0c
82 changed files with 864 additions and 116 deletions

View File

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