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.
/** * This is the starting point of your game. * /*from w w w . j a va 2 s . c o m*/ * Please rename this class and the project to your own game name. * To rename the class and the project, * right click on the class or the project, and go to 'Refractor -> rename' * or select the project or class and press Alt+Shift+R * * (you can delete this comment) */ package game; import com.android.vissenspel.Vissenkom; import android.content.Intent; import android.gameengine.icadroids.engine.GameEngine; public class MyAndroidGame extends GameEngine { @Override protected void initialize() { //put your initialization code here ////////////////////////////////////////////////// //These 2 lines will start vissenkom as example.// // Delete when creating own game! // ////////////////////////////////////////////////// Intent intent = new Intent(this, Vissenkom.class); startActivity(intent); //////////////////////////////////////////////////// } @Override public void update() { super.update(); //put your update code here } }