Back to project page CircleWorldGDX.
The source code is released under:
MIT License
If you think the Android project CircleWorldGDX 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.fdangelo.circleworld.universeengine.objects; // w w w . j a v a2s.c o m public class AvatarInput { public float walkDirection; public boolean jump; public final void reset() { walkDirection = 0.0f; jump = false; } }