All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.czyzby.autumn.mvc.component.ui.controller.ViewPauser Maven / Gradle / Ivy

Go to download

MVC framework based on LibGDX using Autumn for components management and LML as view templates.

There is a newer version: 1.9.1.9.6
Show newest version
package com.github.czyzby.autumn.mvc.component.ui.controller;

/** Manages view pausing and resuming.
 *
 * @author MJ */
public interface ViewPauser {
    /** Called each time the game is paused.
     *
     * @param viewController a reference to the controller for utility. */
    public void pause(ViewController viewController);

    /** Called each time the game is resumed.
     *
     * @param viewController a reference to the controller for utility. */
    public void resume(ViewController viewController);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy