Add remaining tanks

This commit is contained in:
2026-07-13 17:11:21 +02:00
parent 011f90233c
commit 74ec9527da
13 changed files with 378 additions and 110 deletions
+3 -1
View File
@@ -1,12 +1,14 @@
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 bool Highlight { get; set; }
public Brush? Highlight { get; set; }
public void Draw(Canvas canvas);
public bool Update(double x, double y);