Playvoi/Assets/ShiroginSDK/Runtime/Services/Interfaces/IAdsService.cs
2025-10-30 22:48:16 +03:00

18 lines
No EOL
468 B
C#

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