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

com.uwsoft.editor.renderer.data.LayerItemVO 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 LayerItemVO {

	public String layerName = "";
	public boolean isLocked = false;
	public boolean isVisible = true;
	
	public LayerItemVO() {
		
	}

    public LayerItemVO(String name) {
        layerName = new String(name);
    }
	
	public LayerItemVO(LayerItemVO vo) {
		layerName = new String(vo.layerName);
		isLocked = vo.isLocked;
		isVisible = vo.isVisible;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy