示例#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();
 }