示例#1
0
        public SpellCard Clone()
        {
            SpellCard clone = new SpellCard();

            clone.CopyFrom(this);
            return(clone);
        }
示例#2
0
 public void CopyFrom(SpellCard other)
 {
     this.PlayEffect = other.PlayEffect;
     base.CopyFrom(other);
 }