コード例 #1
0
        /**
         * 解锁成就榜
         */
        void unlockAchievement()
        {
            Dictionary <string, string> info = new Dictionary <string, string>();

            info["xx1"] = "xx1";
            info["xx2"] = "xx2";
            AnySDKSocial.getInstance().unlockAchievement(info);
        }
コード例 #2
0
        private void unlockAchievement()
        {
            Dictionary <string, string> dictionary = new Dictionary <string, string>();

            dictionary["xx1"] = "xx1";
            dictionary["xx2"] = "xx2";
            AnySDKSocial.getInstance().unlockAchievement(dictionary);
        }
コード例 #3
0
 private void showAchievements()
 {
     AnySDKSocial.getInstance().showAchievements();
 }
コード例 #4
0
 private void showLeaderboard()
 {
     AnySDKSocial.getInstance().showLeaderboard("1");
 }
コード例 #5
0
 private void submitScore()
 {
     AnySDKSocial.getInstance().submitScore("1", 100L);
 }
コード例 #6
0
 private void Start()
 {
     this._instance = AnySDKSocial.getInstance();
     this._instance.setListener(this, "SocialExternalCall");
 }
コード例 #7
0
 void Start()
 {
     AnySDKSocial.getInstance().setListener(this, "SocialExternalCall");
 }