1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| //
| // GameApp.cs
| // Create:
| // 2020-2-12
| // Description:
| // 广告服务接口
| // Author:
| // 薛林强 <545626463@qq.com>
| //
| // Copyright (c) 2026 虚幻骑士科技
|
| using UnityEngine;
|
| namespace Skyunion
| {
| public enum Channel
| {
| None = 0,
| Facebook = 0x01,
| Appsflyer = 0x02,
| Firebase = 0x04,
| All = 0xffffff,
| }
| public interface IADService : IModule
| {
| void SendEvent(string key, string value, Channel channel = Channel.All);
| void SetupGameID(string strGameId);
| void OnFetchIGGID(string strIggId);
| void SetCharacterID(string characterId);
| }
| }
|
|