123456789101112131415161718192021 |
- using UnityEngine;
- using System.Collections;
- using DashGame;
- public class DGSocial
- {
- public enum Platform
- {
- GameCenter,
- FaceBook,
- }
- private static ISocialPlatform socialPlatform;
- public static ISocialPlatform GetSocialPlatform()
- {
- return socialPlatform;
- }
- }
|