13 lines
380 B
Java
13 lines
380 B
Java
package com.tuoheng.machine.action.cover;
|
|
|
|
import com.tuoheng.machine.events.CoverEvent;
|
|
import com.tuoheng.machine.platform.strategy.PlatformAction;
|
|
import com.tuoheng.machine.status.CoverState;
|
|
|
|
/**
|
|
* Base action for cover-opened handling; platform implementations extend this.
|
|
*/
|
|
public abstract class CoverOpenedAction implements PlatformAction<CoverState, CoverEvent> {
|
|
}
|
|
|