legacy commit 4 (backlog)

This commit is contained in:
cs-powell
2024-11-23 23:43:56 -05:00
parent 7678b4e1f9
commit d2156ae9bc
21 changed files with 7277 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
public abstract class Action {
Integer priority; //Priority of the Task
Integer delay; //Potential Delay before starting the task
Integer taskTime; //How long should the task take
boolean taskComplete; //Is the task completed?
int actionType;
public Action(int actionType, int delay){
this.actionType = actionType;
this.delay = delay;
}
public int getType(){
return actionType;
}
public Integer getDelay(){
return delay;
}
}