com.kotcrab.vis.usl.lang.StyleBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vis-usl Show documentation
Show all versions of vis-usl Show documentation
UI styling language for scene2d.ui
package com.kotcrab.vis.usl.lang;
import java.util.ArrayList;
/** Represents StyleBlock in USL file */
public class StyleBlock {
public String fullName;
public StyleBlock extendsStyle;
public boolean extendsInheritOnlyDefinedStyles;
public ArrayList styles = new ArrayList();
}