feat: add NestEngineInfo and NestEngineRegistry with plugin loading

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 21:07:59 -04:00
parent 1bcfe5d031
commit 4baeb57e84
2 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace OpenNest
{
public class NestEngineInfo
{
public NestEngineInfo(string name, string description, Func<Plate, NestEngineBase> factory)
{
Name = name;
Description = description;
Factory = factory;
}
public string Name { get; }
public string Description { get; }
public Func<Plate, NestEngineBase> Factory { get; }
}
}