public void Divide(StatValue other) { Nominal /= other.Nominal; if (other.Factor != 0) { Factor /= other.Factor; } if (other.Subtracted != 0) { Subtracted /= other.Subtracted; } }
public void Accumulate(StatValue other) { Nominal += other.Nominal; Factor += other.Factor; Subtracted += other.Subtracted; }