12 lines
360 B
Java
12 lines
360 B
Java
package com.tuoheng.machine.action.drc;
|
|
|
|
import com.tuoheng.machine.events.DrcEvent;
|
|
import com.tuoheng.machine.platform.strategy.PlatformAction;
|
|
import com.tuoheng.machine.status.DrcState;
|
|
|
|
/**
|
|
* Base action for DRC enter handling; platform implementations extend this.
|
|
*/
|
|
public abstract class EnterAction implements PlatformAction<DrcState, DrcEvent> {
|
|
}
|