restructuring for project (Backlog 3)
This commit is contained in:
16
Java/ProjectModels/CognitiveModel/Delay.java
Normal file
16
Java/ProjectModels/CognitiveModel/Delay.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package ProjectModels.CognitiveModel;
|
||||
import java.util.Map;
|
||||
import java.util.TreeMap;
|
||||
|
||||
|
||||
public class Delay extends Action {
|
||||
|
||||
public Delay(){
|
||||
super(ActionType.DELAY,1000);
|
||||
}
|
||||
|
||||
public Delay(int delay){
|
||||
super(ActionType.DELAY,delay);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user