11 lines
389 B
Java
11 lines
389 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 point to flying handling; platform implementations extend this.
|
|
*/
|
|
public abstract class PointToFlyingAction implements PlatformAction<DroneState, DroneEvent> {
|
|
} |