using System.Collections.Generic; using System.Linq; namespace ET.Server { /// /// 在线玩家管理组件 /// [ComponentOf(typeof(Scene))] public class GamePlayerComponent : Entity, IAwake, IDestroy { /** 在线玩家集合 **/ public readonly Dictionary idPlayers = new Dictionary(); } }