INNER CODE UNIT · Java
CursorInfo
BSVogler/WurfelEngineSDK · core/src/main/java/editor/CursorInfo.java:46
public class CursorInfo extends WidgetGroup {
private final Label label;
/**
* parent stage
*/
private final Stage stage;
private final Cursor cursor;
/**
*
* @param stage parent stage
* @param cursor the selection-Entity where the block comes from
*/
public CursorInfo(Stage stage, Cursor cursor) {
this.stage = stage;
this.cursor = cursor;
label = new Label("nothing selected", WE.getEngineView().getSkin());