_xiaofang/xiaofang/Assets/Obi/Scripts/Common/Backends/Null/NullBackend.cs
杨号敬 bcc74f0465 add
2024-12-18 02:18:45 +08:00

16 lines
325 B
C#

namespace Obi
{
public class NullBackend : IObiBackend
{
#region Solver
public ISolverImpl CreateSolver(ObiSolver solver, int capacity)
{
return new NullSolverImpl();
}
public void DestroySolver(ISolverImpl solver)
{
}
#endregion
}
}