예제 #1
0
 public static void SetAchievementCompletionLevel(string id, int numSteps)
 {
     KGGoogleGamesAchievements.SetSteps(id, numSteps);
 }
예제 #2
0
 public static void IncrementalAchievement(string id, int numSteps)
 {
     KGGoogleGamesAchievements.Increment(id, numSteps);
 }
예제 #3
0
 public static void ComlpeteAchievement(string id)
 {
     KGGoogleGamesAchievements.Unlock(id);
 }
예제 #4
0
 public static void ShowSingleAchievement(string id)
 {
     KGGoogleGamesAchievements.Reveal(id);
 }
예제 #5
0
 public static void ShowAchievementView()
 {
     KGGoogleGamesAchievements.ShowAchievementView();
 }