Add PlantSchemeWindow

This commit is contained in:
2026-07-10 16:15:15 +02:00
parent ac2eafc8c6
commit a3a0504c11
16 changed files with 350 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.Windows.Controls;
namespace PamhagenSysCtrl.Helpers.Pipeline {
public interface INode {
public double CenterX { get; }
public double CenterY { get; }
public string Label { get; }
public void Draw(Canvas canvas);
}
}