package trackerModule.test;
import trackerModule.sim.map.MapFrame;
import trackerModule.sim.tracker.World;
/**
* The Class GT_Test.
*/
public class GT_Test {
/**
* Instantiates a new g t_ test.
*/
public GT_Test() {
}
/**
* Test.
*/
public void test(){
World.This().load("World_Route.map");
World.This().createShipsByGT();
new MapFrame("PROGNOS Simulator");
}
/**
* The main method.
*
* @param args the arguments
*/
public static void main(String[] args) {
GT_Test T = new GT_Test();
T.test();
}
}