17 lines
413 B
C#
17 lines
413 B
C#
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
|
|
namespace PamhagenSysCtrl.Helpers.Pipeline {
|
|
public interface IEdge {
|
|
|
|
public INode Start { get; }
|
|
public INode End { get; }
|
|
public bool IsTwoWay { get; }
|
|
public bool Orientation { get; }
|
|
public Brush? Highlight { get; set; }
|
|
|
|
public void Draw(Canvas canvas);
|
|
public void Update();
|
|
}
|
|
}
|