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(); }