fixed package mismatch

This commit is contained in:
cs-powell
2024-11-24 15:05:33 -05:00
parent a5cf193a7d
commit 3579efea5d
23 changed files with 135 additions and 79 deletions

View 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);
}
}