PottingMobileServicesBase.cs 569 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class PottingMobileServicesBase
  5. {
  6. protected static void InitManager()
  7. {
  8. if (PottingMobileServicesManger.Instance == null)
  9. new GameObject("PottingMobileServices", typeof(PottingMobileServicesManger));
  10. }
  11. public enum AdPosition
  12. {
  13. TopLeft,
  14. TopCenter,
  15. TopRight,
  16. Centered,
  17. BottomLeft,
  18. BottomCenter,
  19. BottomRight
  20. }
  21. public static void InitializeServices()
  22. {
  23. }
  24. }