Files
MinFt/Client/Assets/Scripts/Services/IAdsService.cs
2026-04-27 12:07:32 +08:00

11 lines
233 B
C#

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