documents reformatted

This commit is contained in:
cs-powell
2024-11-25 13:49:01 -05:00
parent cc17797319
commit 88967419c6
12 changed files with 490 additions and 542 deletions

View File

@@ -1,15 +1,14 @@
package ModelFiles;
// package ProjectModels.CognitiveModel;
public class Delay extends Action {
public Delay(){
super(ActionType.DELAY,1000);
public Delay() {
super(ActionType.DELAY, 1000);
}
public Delay(int delay){
super(ActionType.DELAY,delay);
public Delay(int delay) {
super(ActionType.DELAY, delay);
}
}