mega changes -- transition to Python3
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package CognitiveModel.ModelFiles;
|
||||
// package ProjectModels.CognitiveModel;
|
||||
|
||||
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