Class Input.InputGameAdapter
java.lang.Object
de.gurkenlabs.litiengine.input.Input.InputGameAdapter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
initialized
(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
This method is called when theGame
was terminated (just beforeSystem.exit
is about to be called).Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface de.gurkenlabs.litiengine.GameListener
terminating
-
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
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:
-
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:
-