18 lines
No EOL
468 B
C#
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();
|
|
}
|
|
} |