summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/GoogleMobileAds/Common/IAdLoaderClient.cs
blob: 4f9f33226d8cd3918b4fce95d6e80a6f556a2021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using GoogleMobileAds.Api;

namespace GoogleMobileAds.Common
{
	public interface IAdLoaderClient
	{
		event EventHandler<AdFailedToLoadEventArgs> OnAdFailedToLoad;

		event EventHandler<CustomNativeEventArgs> OnCustomNativeTemplateAdLoaded;

		void LoadAd(AdRequest request);
	}
}