public interface GameListener extends GameTerminatedListener
Game gets started or terminated.| 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. |
boolean |
terminating()
This method gets called before the
Game is about to be terminated. |
terminatedvoid started()
Game.start method was executed.Game.start()void initialized(java.lang.String... args)
Game.init(String...) method was executed.args - The arguments that were passed to the application.Game.init(String...)boolean terminating()
Game is about to be terminated.
Returning false prevents the terminate event to continue.