using System.Collections; using System.Collections.Generic; using UnityEngine; public class PottingMobileBase { public static bool isDebug; protected static void InitManager() { if (PottingMobileManger.Instance == null) new GameObject("PottingMobile", typeof(PottingMobileManger)); if (PottingMobileServicesManger.Instance == null) new GameObject("PottingMobileServices", typeof(PottingMobileServicesManger)); } public static void PottingLog(object log) { if(isDebug) Debug.Log("Potting->"+log); } /// /// 苹果id登录 /// public static void _LoginUseAppleSign() { } public enum AdPosition { TopLeft, TopCenter, TopRight, Centered, BottomLeft, BottomCenter, BottomRight } public enum TimeSpan { TIME_SPAN_DAILY=0, TIME_SPAN_WEEKLY=1, TIME_SPAN_ALL_TIME=2 } public enum AdSize { H_50=50, H_90=90, H_250=250, H_280=280 } }