Example usage for com.badlogic.gdx ApplicationListener resume

List of usage examples for com.badlogic.gdx ApplicationListener resume

Introduction

In this page you can find the example usage for com.badlogic.gdx ApplicationListener resume.

Prototype

public void resume();

Source Link

Document

Called when the Application is resumed from a paused state, usually when it regains focus.

Usage

From source file:es.eucm.ead.engine.EAdEngine.java

License:Open Source License

@Override
public void resume() {
    for (ApplicationListener a : applicationListeners) {
        a.resume();
    }
}