You've already forked CC-Framework.Commercialization
16 lines
480 B
C#
16 lines
480 B
C#
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);
|
|
}
|
|
|
|
public interface IAdEditorDiagnostics
|
|
{
|
|
void LogEditorAdPlacement(ADConfig adConfig, AD_Type adType, string adScene, string action, object[] args);
|
|
}
|
|
}
|