31 lines
735 B
C#
31 lines
735 B
C#
using System.Windows.Controls;
|
|
|
|
namespace PamhagenSysCtrl.Helpers.Pipeline {
|
|
public class Pump : INode {
|
|
|
|
public double CenterX { get; set; }
|
|
public double CenterY { get; set; }
|
|
public string Label { get; set; }
|
|
|
|
public ISet<IEdge> Inputs { get; init; }
|
|
|
|
public ISet<IEdge> Outputs { get; init; }
|
|
|
|
public Pump(string label, double x, double y) {
|
|
CenterX = x;
|
|
CenterY = y;
|
|
Label = label;
|
|
Inputs = new HashSet<IEdge>();
|
|
Outputs = new HashSet<IEdge>();
|
|
}
|
|
|
|
public void Draw(Canvas canvas) {
|
|
|
|
}
|
|
|
|
public bool Update(double x, double y) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|