update core

This commit is contained in:
2023-01-28 17:47:11 +08:00
parent f5c3653527
commit 76ce5fe79a
4 changed files with 21 additions and 4 deletions

View File

@@ -30,7 +30,12 @@ namespace Runtime.ADAggregator
}
public abstract void ShowAD(Action onClose, Action<bool> onVideoComplete);
public abstract bool IsReadly();
public virtual bool IsReadly()
{
return this.curState == 2;
}
public abstract void LoadAD();
public virtual void OnInit()
@@ -43,5 +48,12 @@ namespace Runtime.ADAggregator
public virtual void CloseAD()
{
}
public void OnError(object code, string message)
{
this.OnErrorAction?.Invoke();
this.OnErrorAction = null;
curState = 0;
}
}
}