public Stat( Id id_, NamedHash hash_, Data.Skill.Unit.Stat.ECategory category_, MetricReference reference_) : base(id_) { Hash = hash_; Category = category_; Reference = reference_; }
public Output( MetricReference numeric_, ESubject subject_, Data.Skill.Unit.Stat.ECategory category_, NamedHash gauge_) { Numeric = numeric_; Subject = subject_; Category = category_; Gauge = gauge_; }
public Gauge( Id id_, NamedHash hash_, ETarget target_, Data.Skill.Unit.Stat.ECategory category_, Data.Skill.Unit.Gauge.EInputType inputType_, MetricReference reference_) : base(id_) { Hash = hash_; Target = target_; Category = category_; InputType = inputType_; Reference = reference_; }
public Converter( Id id_, ESubject as_, Data.Skill.Unit.Stat.ECategory categorymask_, Condition condition_, int order_, MetricReference input_, params Output[] outputs_) : base(id_) { As = as_; CategoryMask = categorymask_; Condition = condition_; Order = order_; Input = input_; Outputs = new List <Output>(outputs_); }