com.uwsoft.editor.renderer.data.SelectBoxVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overlap2d-runtime-libgdx Show documentation
Show all versions of overlap2d-runtime-libgdx Show documentation
overlap2d-runtime-libgdx provides functionality to load, manipulate and render scenes generated by Overlap2D.
The newest version!
package com.uwsoft.editor.renderer.data;
import java.util.ArrayList;
public class SelectBoxVO extends MainItemVO {
public ArrayList list = new ArrayList();
public String style = "";
public float width = 0;
public float height = 0;
public SelectBoxVO() {
super();
}
public SelectBoxVO(SelectBoxVO vo) {
super(vo);
width = vo.width;
height = vo.height;
style = new String(vo.style);
}
}