com.bladecoder.engine.ui.BladeScreen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blade-engine Show documentation
Show all versions of blade-engine Show documentation
Classic point and click adventure game engine
package com.bladecoder.engine.ui;
import com.badlogic.gdx.Screen;
public interface BladeScreen extends Screen {
/**
* UI Injector
*
* @param ui
*/
public void setUI(UI ui);
}