Back to project page Froggy.
The source code is released under:
GNU General Public License
If you think the Android project Froggy 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.mopgames.client; /* w w w. j a v a 2s . c o m*/ import com.mopgames.Helpers.ActionResolver; public class ActionResolverDesktop implements ActionResolver { boolean signedInStateGPGS = false; @Override public boolean getSignedInGPGS() { return signedInStateGPGS; } @Override public void loginGPGS() { System.out.println("loginGPGS"); signedInStateGPGS = true; } @Override public void submitScoreGPGS(int score) { System.out.println("submitScoreGPGS " + score); } @Override public void unlockAchievementGPGS(String achievementId) { System.out.println("unlockAchievement " + achievementId); } @Override public void getLeaderboardGPGS() { System.out.println("getLeaderboardGPGS"); } @Override public void getAchievementsGPGS() { System.out.println("getAchievementsGPGS"); } @Override public void rateGame() { // TODO Auto-generated method stub } @Override public void showAd(boolean show) { } }