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

18 lines
346 B
C#

using UnityEngine;
using System;
using System.Collections;
namespace Obi
{
/**
* Base class for backend implementations.
*/
public interface IObiBackend
{
#region Solver
ISolverImpl CreateSolver(ObiSolver solver, int capacity);
void DestroySolver(ISolverImpl solver);
#endregion
}
}