Updated RelayNode;

Added ISlot interface;
Added ProxySlot;
This commit is contained in:
Misaki
2024-11-08 20:56:19 +09:00
parent e15570459c
commit 994297a3f2
22 changed files with 426 additions and 268 deletions

View File

@@ -2,11 +2,16 @@
{
public interface IExecutable
{
public bool IsExecuted
{
get;
}
/// <summary>
/// Execute the node.
/// </summary>
public void Execute();
/// <summary>
/// Clear the execution flag.
/// </summary>