Back to project page candymem.
The source code is released under:
GNU General Public License
If you think the Android project candymem 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 se.tube42.kidsmem.desktop; /*ww w . ja v a 2 s.com*/ import com.badlogic.gdx.*; import com.badlogic.gdx.backends.lwjgl.*; import se.tube42.kidsmem.*; import se.tube42.kidsmem.data.*; class DesktopHandler implements SystemHandler { public static SystemHandler instance = null; public void showMessage(String msg) { System.out.println("MESSAGE " + msg); } public void setFullscreen(boolean fs) { System.out.println("fullscreen = " + fs); } } public class DesktopMain { public static void main(String[] args ) { World.sys = new DesktopHandler(); KidsMemoryApp app = new KidsMemoryApp(); new LwjglApplication( app, "KidsMemory", 320, 480); } }