You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
312 B
12 lines
312 B
3 years ago
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class Skill: Entity, IAwake,ISerializeToEntity
|
||
|
{
|
||
|
public int ConfigId;
|
||
|
public int Level;
|
||
|
public int CoolTime; //冷却 0的时候表示可以释放
|
||
|
public SkillFatherConfig Config => SkillFatherConfigCategory.Instance.Get(this.ConfigId);
|
||
|
|
||
|
}
|
||
|
}
|