Back to project page Android-Tile-Based-Game.
The source code is released under:
MIT License
If you think the Android project Android-Tile-Based-Game 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 org.ruscoe.example.tilegame; /*from w w w .ja v a2 s. c o m*/ import org.ruscoe.example.tilegame.R; import android.app.Activity; import android.os.Bundle; /** * Displays information about this application. * * @author Dan Ruscoe (ruscoe.org) * @version 1.0 */ public class About extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); } }