10 lines
150 B
C#
10 lines
150 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SawCut.Nesting
|
|
{
|
|
public interface IEngine
|
|
{
|
|
Result Pack(List<BinItem> items);
|
|
}
|
|
}
|