PlayerDataComponent.cs 232 B

12345678910
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof (WNPlayer))]
  4. public class PlayerDataComponent: Entity, IAwake<PlayerInfo>, IDestroy
  5. {
  6. /** 玩家基础数据 **/
  7. public PlayerInfo Data { get; set; }
  8. }
  9. }