Files
back_cantanBuilding/Assets/Scripts/Services/IAdsService.cs
2026-05-26 16:15:54 +08:00

11 lines
211 B
C#

using System.Threading.Tasks;
namespace game
{
public interface IAdsService
{
void Init();
//Task<bool> ShowBanner();
void ShowRewarded(AdvertPopupType AadvertPopupType);
}
}