Ejemplo n.º 1
0
        /// <summary>
        /// Creates a copy of the DamageModifierTemplate.
        /// </summary>
        /// <returns>Returns the copy.</returns>
        public DamageModifierTemplate Copy()
        {
            DamageModifierTemplate dmt = new DamageModifierTemplate();

            dmt.Type         = fType;
            dmt.HeroicValue  = fHeroicValue;
            dmt.ParagonValue = fParagonValue;
            dmt.EpicValue    = fEpicValue;

            return(dmt);
        }
Ejemplo n.º 2
0
        public DamageModifierTemplate Copy()
        {
            DamageModifierTemplate damageModifierTemplate = new DamageModifierTemplate()
            {
                Type         = this.fType,
                HeroicValue  = this.fHeroicValue,
                ParagonValue = this.fParagonValue,
                EpicValue    = this.fEpicValue
            };

            return(damageModifierTemplate);
        }