Nathisgreen

GoogleInterface

Jun 7th, 2013
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.me.gdxGooglePlay;
  2.  
  3. public interface GoogleInterface {
  4.  
  5.     public void Login();
  6.     public void LogOut();
  7.    
  8.     //get if client is signed in to Google+
  9.     public boolean getSignedIn();
  10.    
  11.     //submit a score to a leaderboard
  12.     public void submitScore(int score);
  13.    
  14.     //gets the scores and displays them threw googles default widget
  15.     public void getScores();
  16.    
  17.     //gets the score and gives access to the raw score data
  18.     public void getScoresData();
  19.    
  20.    
  21. }
Add Comment
Please, Sign In to add comment