123456789101112131415 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof (WNPlayer))]
- public class PlayerTempDataComponent: Entity, IAwake, IDestroy
- {
- /** 玩家场景数据 **/
- public PlayerMapInfo MapData { get; set; }
- /** 战斗服数据 **/
- public Dictionary<string, object> ToJson4BattleServerTempData { get; set; }
- }
- }
|