12345678910111213141516171819202122232425262728293031323334 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PottingMobileServicesBase
- {
- protected static void InitManager()
- {
- if (PottingMobileServicesManger.Instance == null)
- new GameObject("PottingMobileServices", typeof(PottingMobileServicesManger));
- }
- public enum AdPosition
- {
- TopLeft,
- TopCenter,
- TopRight,
- Centered,
- BottomLeft,
- BottomCenter,
- BottomRight
- }
- public static void InitializeServices()
- {
- }
-
- }
|