| 123456789101112131415161718 |
-
- namespace TapSDK.Core.Internal.Init {
- public interface IInitTask {
- /// <summary>
- /// 初始化顺序
- /// </summary>
- int Order { get; }
- /// <summary>
- /// 初始化
- /// </summary>
- /// <param name="config"></param>
- void Init(TapTapSdkOptions coreOption, TapTapSdkBaseOptions[] otherOptions);
- void Init(TapTapSdkOptions coreOption);
- }
- }
|