Back to project page BobEngine.
The source code is released under:
GNU Lesser General Public License
If you think the Android project BobEngine 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 bobby.example.bobengineexample; /* w w w.j a va 2s.c o m*/ import android.os.Bundle; import bobby.engine.bobengine.BobActivity; /** * This example project demonstrates how to set up the most basic BobEngine project: * 1 view with 1 room that has 1 object */ public class MainActivity extends BobActivity { // View objects public GameView view; @Override public void onCreate(Bundle savedInstanceState) { useImmersiveMode(); super.onCreate(savedInstanceState); view = new GameView(this); setContentView(view); } }