Files
XPlaneConnectCSP/Java/ProjectModels/CognitiveModel/ModelFiles/Delay.java
2024-11-25 13:49:01 -05:00

14 lines
244 B
Java

package ModelFiles;
// package ProjectModels.CognitiveModel;
public class Delay extends Action {
public Delay() {
super(ActionType.DELAY, 1000);
}
public Delay(int delay) {
super(ActionType.DELAY, delay);
}
}