2023-01-10 18:03:30 +08:00
|
|
|
|
namespace Runtime.ADAggregator
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IAdController
|
|
|
|
|
|
{
|
|
|
|
|
|
void Init(ADConfig adConfig, object[] args);
|
|
|
|
|
|
ADPlayer CreateAdPlayer(AD_Type type);
|
|
|
|
|
|
void EventLog(string eventTable, string eventValue, string eventMessage = null);
|
|
|
|
|
|
void SetMask(bool isOpen);
|
|
|
|
|
|
}
|
2026-06-17 18:21:24 +08:00
|
|
|
|
|
|
|
|
|
|
public interface IAdEditorDiagnostics
|
|
|
|
|
|
{
|
|
|
|
|
|
void LogEditorAdPlacement(ADConfig adConfig, AD_Type adType, string adScene, string action, object[] args);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|