Android Open Source - SuperHexagonLiveWP Wall






From Project

Back to project page SuperHexagonLiveWP.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.badlogic.gamedev.Mesh.java
net.greencouchgames.hexagonwp.BufferFactory.java
net.greencouchgames.hexagonwp.HexagonRenderer.java
net.greencouchgames.hexagonwp.HexagonService.java
net.greencouchgames.hexagonwp.HexagonSettings.java
net.greencouchgames.hexagonwp.Wall.java