namespace Misaki.GraphView
{
public interface IExecutable
{
///
/// Check if the node is executed.
///
public bool IsExecuted
{
get;
}
///
/// Execute the node.
///
public void Execute();
///
/// Clear the execution flag.
///
public void ClearExecutionFlag();
}
}