using System; namespace ShiroginSDK.Runtime.Services.Interfaces { /// /// Defines the public API for AdsService. /// public interface IAdsService { bool IsRewardedReady { get; } void ShowRewarded(Action onComplete); void ShowInterstitial(bool forceShow = false); void CreateBanner(bool show); void ShowBanner(); void HideBanner(); void DestroyBanner(); } }