reorganized visualizer and test processes (added abstract class for test process)

This commit is contained in:
cs-powell
2024-11-26 12:01:27 -05:00
parent 39e825d407
commit c214cb182b
13 changed files with 451 additions and 90 deletions

View File

@@ -0,0 +1,15 @@
import ModelFiles.XPlaneConnect;
import ModelFiles.*;
public class testprocess2 extends testprocess {
public testprocess2(Model m, XPlaneConnect xpc){
super(m, xpc);
}
@Override
public void runProcess() {
}
}