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

namespace GoogleMobileAds.Common
{
	public interface IMobileAdsClient
	{
		void Initialize(string appId);

		void SetApplicationVolume(float volume);

		void SetApplicationMuted(bool muted);

		void SetiOSAppPauseOnBackground(bool pause);
	}
}