Files
ft/Client/Assets/Scripts/Services/IAdsService.cs
2026-06-29 21:18:33 +08:00

11 lines
233 B
C#

namespace game
{
public interface IAdsService
{
void Init();
void Release();
void ShowRewarded(AdvertPopupType advertPopupType);
void ShowInterstitial(AdvertPopupType advertPopupType);
}
}