public static void SetObjectInfo(string objName, string objMethod)
        {
            BasePlatformWrapper platformWrapper = PlatformWrapper.platform;

            platformWrapper.SetObjectInfo(objName, objMethod);
        }
        public static void OnClickAd()
        {
            BasePlatformWrapper platformWrapper = PlatformWrapper.platform;

            platformWrapper.OnClickAd();
        }
        public static void InitAd(string source)
        {
            BasePlatformWrapper platformWrapper = PlatformWrapper.platform;

            platformWrapper.InitAd(source);
        }
        public static void ShowAd()
        {
            BasePlatformWrapper platformWrapper = PlatformWrapper.platform;

            platformWrapper.ShowAd();
        }
Exemple #5
0
        //开机广告
        public static void ShowSplash(string source)
        {
            BasePlatformWrapper platformWrapper = PlatformWrapper.platform;

            platformWrapper.ShowSplash(source);
        }