com.github.czyzby.autumn.mvc.component.ui.controller.ViewDialogController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-autumn-mvc Show documentation
Show all versions of gdx-autumn-mvc Show documentation
MVC framework based on LibGDX using Autumn for components management and LML as view templates.
package com.github.czyzby.autumn.mvc.component.ui.controller;
import com.badlogic.gdx.scenes.scene2d.Stage;
/** Manages a single dialog.
*
* @author MJ */
public interface ViewDialogController {
/** @param stage will have the managed dialog shown. */
public void show(Stage stage);
/** @return ID of the dialog as it appears in LML views. */
public String getId();
/** Destroys the dialog instance, if present. */
public void destroyDialog();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy