_xiaofang/xiaofang/Assets/Obi/Scripts/Common/Backends/Null/NullBackend.cs

16 lines
325 B
C#
Raw Normal View History

2024-12-18 02:18:45 +08:00
namespace Obi
{
public class NullBackend : IObiBackend
{
#region Solver
public ISolverImpl CreateSolver(ObiSolver solver, int capacity)
{
return new NullSolverImpl();
}
public void DestroySolver(ISolverImpl solver)
{
}
#endregion
}
}