| 12345678910 |
- using System.Collections.Generic;
- namespace ET
- {
- public class SkillLeagueComponent : Entity, IAwake, IDestroy, ITransfer
- {
- //技能属性缓存 ConstItemAttributeType-> value
- public Dictionary<int, long> SkillAttrTemp = new Dictionary<int, long>();
- }
- }
|