11 lines
233 B
C#
11 lines
233 B
C#
namespace game
|
|
{
|
|
public interface IAdsService
|
|
{
|
|
void Init();
|
|
void Release();
|
|
void ShowRewarded(AdvertPopupType advertPopupType);
|
|
void ShowInterstitial(AdvertPopupType advertPopupType);
|
|
}
|
|
}
|