public static final class Input.InputGameAdapter extends java.lang.Object implements GameListener
| Constructor and Description |
|---|
InputGameAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
initialized(java.lang.String... args)
This method gets called after the
Game.init(String...) method was executed. |
void |
started()
This method gets called after the
Game.start method was executed. |
void |
terminated()
This method is called when the
Game was terminated (just before System.exit is about to be called). |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitterminatingpublic void terminated()
GameListenerGame was terminated (just before System.exit is about to be called).terminated in interface GameListenerpublic void initialized(java.lang.String... args)
GameListenerGame.init(String...) method was executed.initialized in interface GameListenerargs - The arguments that were passed to the application.Game.init(String...)public void started()
GameListenerGame.start method was executed.started in interface GameListenerGame.start()