Back to project page TinyVoxel.
The source code is released under:
GNU General Public License
If you think the Android project TinyVoxel listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.toet.TinyVoxel.Renderer.Wrapped; /* ww w .j a va2 s . com*/ /** * Created by Kajos on 9/23/2014. */ public class WrappedBoolean { boolean value; public WrappedBoolean(boolean value) { set(value); } public void set(boolean value) { this.value = value; } public boolean get() { return value; } }