public interface GameListener extends GameTerminatedListener
Game gets started or terminated.| Modifier and Type | Method and Description |
|---|---|
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.boolean terminating()
Game is about to be terminated.
Returning false prevents the terminate event to continue.