Skip to content

Instantly share code, notes, and snippets.

@jaddison
Created May 16, 2011 00:52
Show Gist options
  • Save jaddison/973739 to your computer and use it in GitHub Desktop.
Save jaddison/973739 to your computer and use it in GitHub Desktop.
Intellij IDEA 10 IDE libGDX base application
package com.example.libgdxexample;
import com.badlogic.gdx.ApplicationListener;
public class Game implements ApplicationListener {
public void create () {
}
public void render () {
}
public void resize (int width, int height) {
}
public void pause () {
}
public void resume () {
}
public void dispose () {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment