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

com.bigcustard.scene2dplus.resource.Resource Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.scene2dplus.resource;

import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.utils.Disposable;

public interface Resource extends Disposable {
    Actor editor();
    Controller controller();
    TModel model();

    interface Controller {
        void watchRemoveButton(Runnable onRemove);
        void unwatchRemoveButton();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy