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

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

Go to download

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy