PlayerSkillComponent.cs 377 B

1234567891011121314
  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. }