Exemplo n.º 1
0
  /** Processes all that has to be repeated in the game loop. */
  protected void process() {
    // get user inputs
    Keyboard.captureState();
    Mouse.captureState();

    // update game state
    update(gameTime);

    // render graphics
    Screen.getInstance().render();
  }
Exemplo n.º 2
0
 /** Loads all content that has to be available before the game loop. */
 protected void load() {
   Screen.getInstance().register(this);
 }
Exemplo n.º 3
0
 public MainPanel() {
   add(Screen.getInstance());
 }