Advertisement
wreed12345

Untitled

Jun 17th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. package com.reed.birdseye;
  2.  
  3. import com.badlogic.gdx.Files.FileType;
  4. import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
  5. import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
  6.  
  7. public class Main {
  8.     public static void main(String[] args) {
  9.         LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
  10.         cfg.title = "Lode Scape - 1.1.2.0 Beta";
  11.         cfg.useGL20 = true;
  12.         cfg.width = 960;
  13.         cfg.height = 540;
  14.         cfg.foregroundFPS = 60;
  15.         cfg.backgroundFPS = 60;
  16.         cfg.resizable = false;
  17.         cfg.addIcon("data/icon16x16.png", FileType.Internal);
  18.         cfg.addIcon("data/icon32x32.png", FileType.Internal);
  19.  
  20.         new LwjglApplication(new BirdsEye(), cfg);
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement