Back to project page AndroidShooter.
The source code is released under:
GNU General Public License
If you think the Android project AndroidShooter 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 jonathan.geoffroy.shooter.model.characters; //from w ww . j a va2 s . c om public class Coord2F { public float x, y; public Coord2F() {} public Coord2F(float x, float y) { this.x = x; this.y = y; } }