From e9ea621b93fbb58d9edfca8375918791637bbd52 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 30 Dec 2020 20:59:04 +0800 Subject: +init --- .../GoogleMobileAdsClientFactory.cs | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs (limited to 'Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs') diff --git a/Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs b/Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs new file mode 100644 index 0000000..1e5fcaa --- /dev/null +++ b/Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs @@ -0,0 +1,39 @@ +using System; +using GoogleMobileAds.Api; +using GoogleMobileAds.Common; + +namespace GoogleMobileAds +{ + public class GoogleMobileAdsClientFactory + { + public static IBannerClient BuildBannerClient() + { + return new DummyClient(); + } + + public static IInterstitialClient BuildInterstitialClient() + { + return new DummyClient(); + } + + public static IRewardBasedVideoAdClient BuildRewardBasedVideoAdClient() + { + return new DummyClient(); + } + + public static IRewardedAdClient BuildRewardedAdClient() + { + return new RewardedAdDummyClient(); + } + + public static IAdLoaderClient BuildAdLoaderClient(AdLoader adLoader) + { + return new DummyClient(); + } + + public static IMobileAdsClient MobileAdsInstance() + { + return new DummyClient(); + } + } +} -- cgit v1.1-26-g67d0