Created
September 26, 2012 21:47
-
-
Save jaddison/3790821 to your computer and use it in GitHub Desktop.
Intellij IDEA 10 IDE libGDX Android 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 android.os.Bundle; | |
import com.badlogic.gdx.backends.android.AndroidApplication; | |
public class ExampleActivity extends AndroidApplication | |
{ | |
/** Called when the activity is first created. */ | |
@Override | |
public void onCreate(Bundle savedInstanceState) | |
{ | |
super.onCreate(savedInstanceState); | |
initialize(new Game(), false); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment