16 lines
324 B
C#
16 lines
324 B
C#
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace Misaki.GraphView
|
|
{
|
|
public interface IGraphProcessor
|
|
{
|
|
public bool IsRunning { get; }
|
|
|
|
public void UpdateComputeOrder();
|
|
|
|
public void Execute(ReadOnlyCollection<DataNode> nodes);
|
|
|
|
public void Break();
|
|
}
|
|
} |