12345678910111213 |
- namespace ET.Server
- {
- [ComponentOf(typeof (WNPlayer))]
- public class PlayerTempDataComponent: Entity, IAwake<WNPlayer>, IDestroy
- {
- /** 玩家场景数据 **/
- public PlayerMapInfo MapData { get; set; }
- /** 玩家对象 **/
- public WNPlayer Player { get; set; }
- }
- }
|