Package org.jsgene

Source Code of org.jsgene.EntryPoint

package org.jsgene;

import org.jsgene.script.ScriptManager;
import org.jsgene.util.Color;

public class EntryPoint
{
  public static ScriptManager scriptManager;
  public static String windowType;
 
  public static void main(String[] args)
  {
    windowType = "native";
    Color.createDefaultColors();
   
    scriptManager = new ScriptManager();
    scriptManager.loadScript("main.js");
    scriptManager.executeScript("main.js");
  }
}
TOP

Related Classes of org.jsgene.EntryPoint

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.