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() { } }