diff options
Diffstat (limited to 'Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs')
-rw-r--r-- | Client/Assembly-CSharp/GoogleMobileAds/GoogleMobileAdsClientFactory.cs | 39 |
1 files changed, 39 insertions, 0 deletions
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(); + } + } +} |