Back to project page snappyfrog.
The source code is released under:
Apache License
If you think the Android project snappyfrog 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 com.masseranolabs.snappyfrog; // w ww . j ava 2 s .c o m import com.badlogic.gdx.Gdx; public class DesktopServices implements PlatformServices { public DesktopServices(){ } @Override public boolean isSharingAvailable() { return false; } @Override public boolean shareCurrentScreen() { return false; } @Override public boolean willResumeAfterShare() { return true; } @Override public boolean delayHint() { return false; } @Override public boolean supportsFreetype() { return true; } @Override public boolean isGamePadButtonPressed() { return false; } @Override public void initGamePadControllers() {} }