1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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);
- }
- /// <summary>
- /// 苹果id登录
- /// </summary>
- 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
-
- }
- }
|