Back to project page AllBinary-Platform-Game.
The source code is released under:
AllBinary Open License Version 1.0 Copyright (c) 2011 AllBinary. By agreeing to this license you and any business entity you represent are legally bound to this legal agreement. You may transmit, m...
If you think the Android project AllBinary-Platform-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.
/* * To change this template, choose Tools | Templates * and open the template in the editor.// w w w .j a v a 2s. c om */ package playn.core; import javax.microedition.midlet.MIDlet; import org.allbinary.midlet.MidletFactoryInterface; /** * * @author user */ public class TestGameDemoMidletFactory extends MidletFactoryInterface { public MIDlet getInstance() { return new TestGameDemo(); } }