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 v a 2 s. c o m import android.content.Context; import bobby.engine.bobengine.BobView; import bobby.engine.bobengine.Graphic; public class GameView extends BobView { // Textures public static Graphic android; // Rooms private StartRoom start; public GameView(Context context) { super(context); } public void onCreateGraphics() { android = getGraphicsHelper().addGraphic(R.drawable.ic_launcher); } public void onCreateRooms() { start = new StartRoom(this); goToRoom(start); } }