Advertisement
UpAndCrawling

Google Play Game Service Interface for libgdx

Aug 16th, 2013
975
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public interface GameServiceInterface {
  2.  
  3.     public void login();
  4.     public void logOut();
  5.  
  6.     public boolean isSignedIn();
  7.  
  8.     public void submitScore(int score);
  9.     public void unlockAchievements(String achievementID);
  10.  
  11.     //gets the scores/achievements and displays them threw googles default widget
  12.     public void showScores();
  13.     public void showAchievements();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement