RobotNet/RobotNet.RobotManager/Services/Planner/IPathPlannerManager.cs
2025-10-15 15:15:53 +07:00

9 lines
192 B
C#

using RobotNet.RobotShares.Enums;
namespace RobotNet.RobotManager.Services.Planner;
public interface IPathPlannerManager
{
IPathPlanner GetPathPlanningService(NavigationType type);
}