Files
Fishing2/Assets/ThirdParty/Obi/Scripts/Common/Backends/Null/NullBackend.cs
2025-05-10 12:49:47 +08:00

17 lines
326 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
}
}