Back to project page mobius.
The source code is released under:
MIT License
If you think the Android project mobius 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.sgtcodfish.mobiusListing.player; /* ww w.j a v a2 s .c o m*/ /** * <p> * Holds constants used by the player, such as run velocity and jump velocity. * </p> * * @author Ashley Davis (SgtCoDFish) */ public class PlayerConstants { public static final float RUN_VELOCITY = 7.5f; public static final float JUMP_VELOCITY = 15.0f; // TODO: fix dirty hack public static boolean interacting = false; }