Moved nesting to SawCut library

This commit is contained in:
AJ
2021-10-04 19:06:33 -04:00
parent 793c6173b1
commit 44f3cbfa81
18 changed files with 186 additions and 86 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace SawCut.Nesting
{
public interface IEngine
{
Result Pack(List<BinItem> items);
}
}