diff options
Diffstat (limited to 'Client/Assembly-CSharp/GoogleMobileAds/Common/IMobileAdsClient.cs')
-rw-r--r-- | Client/Assembly-CSharp/GoogleMobileAds/Common/IMobileAdsClient.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/GoogleMobileAds/Common/IMobileAdsClient.cs b/Client/Assembly-CSharp/GoogleMobileAds/Common/IMobileAdsClient.cs new file mode 100644 index 0000000..a7735f2 --- /dev/null +++ b/Client/Assembly-CSharp/GoogleMobileAds/Common/IMobileAdsClient.cs @@ -0,0 +1,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); + } +} |