Package tests

Source Code of tests.DesktopLauncher

package tests;

import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;

public class DesktopLauncher {

  public static void main(String[] argv) {
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    config.title = "box2d lights test";
    config.width = 800;
    config.height = 480;
    config.samples = 4;
    config.depth = 0;
    config.vSyncEnabled = true;

    config.fullscreen = false;
    new LwjglApplication(new Box2dLightTest(), config);
  }

}
TOP

Related Classes of tests.DesktopLauncher

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.