Example #1
0
        public override void CopyFrom(DMKShooterModifier rhs)
        {
            if (rhs.GetType() == typeof(DMKLineModifier))
            {
                DMKLineModifier lm = rhs as DMKLineModifier;
                this.count            = lm.count;
                this.speedAttenuation = lm.speedAttenuation;
            }

            base.CopyFrom(rhs);
        }