9 lines
192 B
C#
9 lines
192 B
C#
using RobotNet.RobotShares.Enums;
|
|
|
|
namespace RobotNet.RobotManager.Services.Planner;
|
|
|
|
public interface IPathPlannerManager
|
|
{
|
|
IPathPlanner GetPathPlanningService(NavigationType type);
|
|
}
|