using System; using System.Collections.Generic; using System.Linq; using System.Text; /// /// 平台管理器 /// public class PlatformHelper { /// /// 单键实例 /// private static PlatformHelper instance = null; /// /// 获取单键实例 /// /// 单键实例 public static PlatformHelper Instance() { if (null == instance) { instance = new PlatformHelper(); } return instance; } #region(信息相关) /// /// 获取当前所处平台名称 /// /// 平台名称 public string PlatformName() { return ""; } /// /// 获取玩家平台唯一id /// /// public string PlatformUserID() { return ""; } #endregion }