您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

23 行
451 B

  1. using UnityEngine;
  2. using System.Collections;
  3. namespace ETModel
  4. {
  5. namespace com.commsdk.unity3d
  6. {
  7. public abstract class CommSDKImpl
  8. {
  9. public abstract void InitSDK(string objName, string methodName);
  10. /// <summary>
  11. /// Authorize the specified platform.
  12. /// </summary>
  13. public abstract void Authorize(int type, int reqID);
  14. }
  15. }
  16. }