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; //from w ww . j av a 2 s .c o m /** * Created by Kajos on 9/23/2014. */ public class WrappedInteger { int value; public WrappedInteger(int value) { set(value); } public void set(int value) { this.value = value; } public int get() { return value; } public void increment() { value++; } public void decrement() { value--; } }