Skip to content

Instantly share code, notes, and snippets.

@jaddison
Created May 16, 2011 01:02
Show Gist options
  • Save jaddison/973745 to your computer and use it in GitHub Desktop.
Save jaddison/973745 to your computer and use it in GitHub Desktop.
Intellij IDEA 10 IDE libGDX Desktop application
package com.example.libgdxexample;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
public class DesktopStarter {
public static void main (String[] args) {
new LwjglApplication(new Game(), "Game", 480, 320, false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment