Back to project page wannabe.
The source code is released under:
MIT License
If you think the Android project wannabe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2013 Patrick Forhan. package wannabe; /* w w w. java 2 s. c o m*/ public class Position { public int x; public int y; public int z; public Position() { } public Position(int x, int y, int z) { this.x = x; this.y = y; this.z = z; } }