All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwsoft.editor.renderer.data.TextBoxVO Maven / Gradle / Ivy

Go to download

overlap2d-runtime-libgdx provides functionality to load, manipulate and render scenes generated by Overlap2D.

There is a newer version: 0.1.1
Show 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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy