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.client; //from w w w . j a v a 2s .co m import com.masseranolabs.snappyfrog.PlatformServices; public class HtmlServices implements PlatformServices { @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 false; } @Override public boolean isGamePadButtonPressed() { return false; } @Override public void initGamePadControllers() {} }