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; //from w w w . j ava 2s. c om public interface IGoogleServices { public void signIn(); public void signOut(); public void rateGame(); public void submitClassicScore(long score); public void submitZenScore(long score); public void showClassicScores(); public void showZenScores(); public boolean isSignedIn(); }