ShareSDKConfig.cs 351 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections;
  3. using UnityEngine;
  4. namespace cn.sharesdk.unity3d
  5. {
  6. [Serializable]
  7. public class ShareSDKConfig
  8. {
  9. public string appKey;
  10. public string appSecret;
  11. public ShareSDKConfig()
  12. {
  13. this.appKey = "moba6b6c6d6";
  14. this.appSecret = "b89d2427a3bc7ad1aea1e1e8c1d36bf3";
  15. }
  16. }
  17. }