fixed package mismatch
This commit is contained in:
15
Java/ProjectModels/CognitiveModel/ModelFiles/Delay.java
Normal file
15
Java/ProjectModels/CognitiveModel/ModelFiles/Delay.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package 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