Package trackerModule.test

Source Code of trackerModule.test.GT_Test

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();
  }
}
TOP

Related Classes of trackerModule.test.GT_Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.