Back to project page SuperHexagonLiveWP.
The source code is released under:
GNU General Public License
If you think the Android project SuperHexagonLiveWP 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 net.greencouchgames.hexagonwp; /*from w w w.j a v a 2s . c o m*/ public class Wall { public int lane; public float dist; public boolean dodged; public Wall(int l) { lane = l; dist = 1f; dodged = false; } }