mirror of
https://github.com/Earth-Genesis-Games/Carrasco.git
synced 2026-09-11 09:52:19 +00:00
8 lines
150 B
C#
8 lines
150 B
C#
using System;
|
|
|
|
public interface IRewardedAdsService
|
|
{
|
|
bool IsRewardedReady();
|
|
void ShowRewardedAd(Action onSuccess, Action<string> onFail);
|
|
}
|