DGSocial.cs 280 B

123456789101112131415161718192021
  1. using UnityEngine;
  2. using System.Collections;
  3. using DashGame;
  4. public class DGSocial
  5. {
  6. public enum Platform
  7. {
  8. GameCenter,
  9. FaceBook,
  10. }
  11. private static ISocialPlatform socialPlatform;
  12. public static ISocialPlatform GetSocialPlatform()
  13. {
  14. return socialPlatform;
  15. }
  16. }