com.uwsoft.editor.renderer.data.TextBoxVO 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;
public class TextBoxVO extends MainItemVO {
public String defaultText = "";
public float width = 0;
public float height = 0;
public String style = "";
public TextBoxVO() {
super();
}
public TextBoxVO(TextBoxVO vo) {
super(vo);
defaultText = new String(vo.defaultText);
width = vo.width;
height = vo.height;
style = new String(vo.style);
}
}