Class Input.InputGameAdapter

java.lang.Object
de.gurkenlabs.litiengine.input.Input.InputGameAdapter
All Implemented Interfaces:
GameListener, EventListener
Enclosing class:
Input

public static final class Input.InputGameAdapter extends Object implements GameListener
  • Constructor Details

    • InputGameAdapter

      public InputGameAdapter()
  • Method Details

    • terminated

      public void terminated()
      Description copied from interface: GameListener
      This method is called when the Game was terminated (just before System.exit is about to be called).
      Specified by:
      terminated in interface GameListener
    • initialized

      public void initialized(String... args)
      Description copied from interface: GameListener
      This method gets called after the Game.init(String...) method was executed.
      Specified by:
      initialized in interface GameListener
      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 the Game.start method was executed.
      Specified by:
      started in interface GameListener
      See Also: