11 lines
388 B
Java
11 lines
388 B
Java
|
|
package com.tuoheng.machine.action.drone;
|
||
|
|
|
||
|
|
import com.tuoheng.machine.events.DroneEvent;
|
||
|
|
import com.tuoheng.machine.platform.strategy.PlatformAction;
|
||
|
|
import com.tuoheng.machine.status.DroneState;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Base action for drone emergency stop handling; platform implementations extend this.
|
||
|
|
*/
|
||
|
|
public abstract class EmergencyStopAction implements PlatformAction<DroneState, DroneEvent> {
|
||
|
|
}
|