Back to project page CatchDROP.
The source code is released under:
GNU General Public License
If you think the Android project CatchDROP 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 projects.nerdybuzz.catchdrop.googleservices; // w ww. j a v a 2 s .c o m public class DesktopGoogleServices implements IGoogleServices { @Override public void signIn() { System.out.println("DesktopGoogleServies: signIn()"); } @Override public void signOut() { System.out.println("DesktopGoogleServies: signOut()"); } @Override public void rateGame() { System.out.println("DesktopGoogleServies: rateGame()"); } @Override public void showClassicScores() { System.out.println("DesktopGoogleServies: showClassicScores()"); } @Override public void showZenScores() { System.out.println("DesktopGoogleServies: showZenScores()"); } @Override public boolean isSignedIn() { System.out.println("DesktopGoogleServies: isSignedIn()"); return false; } @Override public void submitClassicScore(long score) { System.out.println("DesktopGoogleServies: submitClassicScore()"); } @Override public void submitZenScore(long score) { System.out.println("DesktopGoogleServies: submitZenScore()"); } }