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