using System.Collections.Generic; namespace ET.Server { /// /// 游戏服玩家场景组件 /// [ComponentOf(typeof(Scene))] public class GameMapComponent: Entity, IAwake, IDestroy { /** 场景集合 key:instanceId, value:map **/ public readonly Dictionary allMaps = new Dictionary(); } }