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.engine.touchinput; //from w ww . jav a 2s. com import bobby.engine.bobengine.BobView; import bobby.engine.bobengine.Room; public class StartRoom extends Room { // Game Objects private AnObject object; public StartRoom(BobView container) { super(container); // TODO Initialization of objects and variables object = new AnObject(nextInstance(), this); // TODO Add objects to this room addObject(object); } /** * Set up and reset the room. */ public void set() { object.set(); } }