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; //from w w w . j ava 2s .c o m public class ShipInput { public float moveDirection; public float rotateDirection; public final void reset() { moveDirection = 0; rotateDirection = 0; } }