2026-08-04 12:47:39 +08:00
|
|
|
namespace MultiWheelC.TrajectoryPlanning.EMPlanner;
|
|
|
|
|
|
|
|
|
|
/// <summary>Optional observer for completed rolling planning cycles.</summary>
|
|
|
|
|
public interface IEmPlanningCycleSink
|
|
|
|
|
{
|
|
|
|
|
void OnCycleCompleted(PlanningCycleResult result);
|
|
|
|
|
}
|