Files
com.misaki.graph-view/Runtime/Contracts/Nodes/IExecutable.cs
Misaki c853994bf5 Added IExecutable and ISlotContainer interface.
Changed SlotContainerNode to ExecutableNode
2024-11-05 02:25:15 +09:00

15 lines
318 B
C#

namespace Misaki.GraphView
{
public interface IExecutable
{
/// <summary>
/// Execute the node.
/// </summary>
public void Execute();
/// <summary>
/// Clear the execution flag.
/// </summary>
public void ClearExecutionFlag();
}
}