Package de.gurkenlabs.litiengine.input
Class Input.InputGameAdapter
java.lang.Object
de.gurkenlabs.litiengine.input.Input.InputGameAdapter
- All Implemented Interfaces:
GameListener
,java.util.EventListener
- Enclosing class:
- Input
public static final class Input.InputGameAdapter
extends java.lang.Object
implements GameListener
Constructor Summary
Constructors Constructor Description InputGameAdapter()
Method Summary
Modifier and Type Method Description void
initialized(java.lang.String... args)
This method gets called after theGame.init(String...)
method was executed.void
started()
This method gets called after theGame.start
method was executed.void
terminated()
This method is called when theGame
was terminated (just beforeSystem.exit
is about to be called).
Constructor Details
InputGameAdapter
public InputGameAdapter()
Method Details
terminated
public void terminated()Description copied from interface:GameListener
This method is called when theGame
was terminated (just beforeSystem.exit
is about to be called).- Specified by:
terminated
in interfaceGameListener
initialized
public void initialized(java.lang.String... args)Description copied from interface:GameListener
This method gets called after theGame.init(String...)
method was executed.- Specified by:
initialized
in interfaceGameListener
- Parameters:
args
- The arguments that were passed to the application.- See Also:
Game.init(String...)
started
public void started()Description copied from interface:GameListener
This method gets called after theGame.start
method was executed.- Specified by:
started
in interfaceGameListener
- See Also:
Game.start()