PlayerBtlComponent.cs 609 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof (WNPlayer))]
  5. public class PlayerBtlComponent: Entity, IAwake, IDestroy
  6. {
  7. [StaticField]
  8. public int Tenthousand = 10000;
  9. /** 职业等级属性 **/
  10. [StaticField]
  11. public Dictionary<PlayerBtlData, int> Data_Pro_Lv = new Dictionary<PlayerBtlData, int>();
  12. [StaticField]
  13. public Dictionary<PlayerBtlData, int> AllInflus = new Dictionary<PlayerBtlData, int>();
  14. /** 职业初始信息配置 **/
  15. public CharacterConfig CharacterProp { get; set; }
  16. }
  17. }