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

com.github.czyzby.autumn.mvc.component.ui.controller.ViewRenderer 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;

import com.badlogic.gdx.scenes.scene2d.Stage;

/** Manages view rendering.
 *
 * @author MJ */
public interface ViewRenderer {
    /** Called on each application's render class when the view is shown. Should not contain any heavy actions (object
     * creations, asset loading, etc).
     *
     * @param stage managed by the view.
     * @param delta time passed since the last update. */
    void render(Stage stage, float delta);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy