Back to project page game-api-android.
The source code is released under:
MIT License
If you think the Android project game-api-android 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 testGames.gameEngineTest; /* w w w . j ava2 s. c om*/ import android.gameengine.icadroids.objects.MoveableGameObject; /** * Dit GameObject test sprite en speed. * * @author Bas van der Zandt * */ public class TestGameObject extends MoveableGameObject { public TestGameObject() { setSprite("nyan"); setSpeed(2); } }