Example usage for Java com.badlogic.gdx ApplicationListener fields, constructors, methods, implement or subclass
The text is from its open source code.
void | create() Called when the Application is first created. |
void | dispose() Called when the Application is destroyed. |
void | pause() Called when the Application is paused, usually when it's not active or visible on screen. |
void | render() Called when the Application should render itself. |
void | resize(int width, int height) Called when the Application is resized. |
void | resume() Called when the Application is resumed from a paused state, usually when it regains focus. |