version bump

This commit is contained in:
Pilzinsel64
2024-11-15 10:17:50 +01:00
parent 7c39f2778f
commit b7acc6f0a4
5 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
namespace Pilz.Plugins.Advanced.UI;
public class ControlManager(PluginFeatureController controller, bool autoTrack)
{
public PluginFeatureController Controller => controller;
public bool AutoTrack => autoTrack;
public void RegisterControl(Control control)
{
}
public void Execute(object mode)
{
}
}