This commit is contained in:
2023-01-10 18:03:30 +08:00
commit fa5b5192b0
58 changed files with 3761 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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);
}
}