Back to project page ninja-trials.
The source code is released under:
Apache License
If you think the Android project ninja-trials 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.madgear.ninjatrials.trials.shuriken; public class ShurikenCoordinates { // Coordinates origin (0,0) is the screen lower left corner. public float x, y; public ShurikenCoordinates(float x, float y) { this.x = x; this.y = y; } }