Example #1
0
        public static DevouringPlauge operator *(DevouringPlauge A, float b)
        {
            DevouringPlauge C = (DevouringPlauge)A.MemberwiseClone();

            multiply(A, b, C);
            return(C);
        }
Example #2
0
        public static DevouringPlauge operator +(DevouringPlauge A, DevouringPlauge B)
        {
            DevouringPlauge C = (DevouringPlauge)A.MemberwiseClone();

            add(A, B, C);
            return(C);
        }
Example #3
0
        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();
        }