17 lines
342 B
C#
17 lines
342 B
C#
using System;
|
|
|
|
public interface IAdsSDK
|
|
{
|
|
string BannerUnit { get; }
|
|
string InterstitialUnit { get; }
|
|
string RewardUnit { get; }
|
|
string SdkKey { get; }
|
|
|
|
void Init(Action callback);
|
|
bool HasRewardVideo();
|
|
bool HasInterstitialVideo();
|
|
void ShowBanner();
|
|
void ShowInterstitial();
|
|
void ShowReward();
|
|
}
|