コード例 #1
0
        public static MindSpike operator *(MindSpike A, float b)
        {
            MindSpike C = (MindSpike)A.MemberwiseClone();

            multiply(A, b, C);
            return(C);
        }
コード例 #2
0
        public static MindSpike operator +(MindSpike A, MindSpike B)
        {
            MindSpike C = (MindSpike)A.MemberwiseClone();

            add(A, B, C);
            return(C);
        }
コード例 #3
0
ファイル: Rotation.cs プロジェクト: LucasPeacecraft/rawr
        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();
        }