2025-12-17 10:23:45 +08:00
|
|
|
package com.tuoheng.old.action.drone;
|
2025-12-16 14:37:16 +08:00
|
|
|
|
2025-12-17 10:23:45 +08:00
|
|
|
import com.tuoheng.old.events.DroneEvent;
|
|
|
|
|
import com.tuoheng.old.platform.strategy.PlatformAction;
|
|
|
|
|
import com.tuoheng.old.status.DroneState;
|
2025-12-16 14:37:16 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base action for drone point flying completed handling; platform implementations extend this.
|
|
|
|
|
*/
|
|
|
|
|
public abstract class PointFlyingCompletedAction implements PlatformAction<DroneState, DroneEvent> {
|
|
|
|
|
}
|