public static DevouringPlauge operator *(DevouringPlauge A, float b) { DevouringPlauge C = (DevouringPlauge)A.MemberwiseClone(); multiply(A, b, C); return(C); }
public static DevouringPlauge operator +(DevouringPlauge A, DevouringPlauge B) { DevouringPlauge C = (DevouringPlauge)A.MemberwiseClone(); add(A, B, C); return(C); }
public Rotation(SpellBox spellBox, PriestTalents talents, IRotationOptions rotOpt) : this() { Talents = talents; DP = spellBox.DP; MB = spellBox.MB; MF = spellBox.MF; Fiend = spellBox.Fiend; SWD = spellBox.SWD; SWP = spellBox.SWP; VT = spellBox.VT; Spike = spellBox.Spike; //useXXX = rotOpt.UseDpsFireTotem; CalculateRotation(); }