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,15 @@
import java.util.Map;
import java.util.TreeMap;
public class Vision extends Action {
public Vision(){
super(1,1000);
}
public Vision(int delay){
super(1,delay);
}
}