Files
CC-Framework.Commercialization/Assets/Runtime/ADAggregator/IAdController.cs
2023-01-10 18:03:30 +08:00

10 lines
308 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);
}
}