Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses 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 acceptableLosses.components; // w ww .ja v a 2s . com import com.artemis.PooledComponent; public class Position extends PooledComponent { public int x, y, z = 0; @Override protected void reset() { x = y = z = 0; } public Position set(int x, int y, int z) { this.x = x; this.y = y; this.z = z; return this; } }