1234567891011121314 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof (WNPlayer))]
- public class PlayerSkillComponent: Entity, IAwake, IDestroy
- {
- /** 玩家技能数据 **/
- public PlayerSkillInfo Data { get; set; }
- /** 战斗服技能数据 **/
- public List<Struct.SkillInfo> ToJson4BattleServerSkills { get; set; }
- }
- }
|