11 lines
211 B
C#
11 lines
211 B
C#
using System.Threading.Tasks;
|
|
namespace game
|
|
{
|
|
public interface IAdsService
|
|
{
|
|
void Init();
|
|
//Task<bool> ShowBanner();
|
|
void ShowRewarded(AdvertPopupType AadvertPopupType);
|
|
}
|
|
}
|