mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00

* 添加DataTable Converter * 修改DataSet Converter,支持多个Tables反序列化,此转换器也支持兼容DataTable * 修改构造方法、工厂方法,添加常用类自定义转换器
22 lines
707 B
C#
22 lines
707 B
C#
namespace Milimoe.FunGame.Core.Entity
|
|
{
|
|
public class PassiveSkill : Skill
|
|
{
|
|
public decimal Reference1 { get; set; } = 0;
|
|
public decimal Reference2 { get; set; } = 0;
|
|
public decimal Reference3 { get; set; } = 0;
|
|
public decimal Reference4 { get; set; } = 0;
|
|
public decimal Reference5 { get; set; } = 0;
|
|
public decimal Reference6 { get; set; } = 0;
|
|
public decimal Reference7 { get; set; } = 0;
|
|
public decimal Reference8 { get; set; } = 0;
|
|
public decimal Reference9 { get; set; } = 0;
|
|
public decimal Reference10 { get; set; } = 0;
|
|
|
|
internal PassiveSkill()
|
|
{
|
|
Active = false;
|
|
}
|
|
}
|
|
}
|