protected override BaseEffect DoCopy()
        {
            RotateAttackEffect NewEffect = new RotateAttackEffect(Params);

            NewEffect._Angle = _Angle;

            return(NewEffect);
        }
        protected override void DoCopyMembers(BaseEffect Copy)
        {
            RotateAttackEffect NewEffect = (RotateAttackEffect)Copy;

            _Angle = NewEffect._Angle;
        }