Created
May 16, 2011 01:02
-
-
Save jaddison/973745 to your computer and use it in GitHub Desktop.
Intellij IDEA 10 IDE libGDX Desktop application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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