PlayerSkillComponent.cs 452 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof (WNPlayer))]
  5. public class PlayerSkillComponent: Entity, IAwake, IDestroy
  6. {
  7. /** 玩家技能数据 **/
  8. public PlayerSkillInfo Data { get; set; }
  9. /** 战斗服技能数据 **/
  10. public List<Struct.SkillInfo> ToJson4BattleServerSkills { get; set; }
  11. /** 玩家实体 **/
  12. public WNPlayer Player { get; set; }
  13. }
  14. }