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.
11 lines
316 B
11 lines
316 B
3 years ago
|
namespace ET
|
||
|
{
|
||
|
public class Modifier:Entity,IAwake<int,long>
|
||
|
{
|
||
|
public int ConfigId;
|
||
|
public long TargetId; //目标ID
|
||
|
public SkillEffectConfig Config=>SkillEffectConfigCategory.Instance.Get(ConfigId);
|
||
|
public int Value;
|
||
|
public int OneValue; //单次的数值
|
||
|
}
|
||
|
}
|