Package cc.plural.ecs.provider

Examples of cc.plural.ecs.provider.LWJGLApplicationConfiguration


   * Serial UID
   */
  private static final long serialVersionUID = 1L;

  public AppletWrapper() {
    super(new RuntimeApplication(), new LWJGLApplicationConfiguration());
  }
View Full Code Here


import org.lwjgl.LWJGLException;

public class ApplicationWrapper {

    public static void main(String[] args) throws LWJGLException {
        LWJGLApplicationConfiguration applicationConfiguration = new LWJGLApplicationConfiguration();
        applicationConfiguration.title = "ECS Prototype 3";
        applicationConfiguration.width = 960;
        applicationConfiguration.height = 600;
        applicationConfiguration.resizable = true;
        applicationConfiguration.backGroundColor = Color.LIGHT_GREY;
View Full Code Here

TOP

Related Classes of cc.plural.ecs.provider.LWJGLApplicationConfiguration

Copyright © 2018 www.massapicom. 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.