public SpellCard Clone() { SpellCard clone = new SpellCard(); clone.CopyFrom(this); return(clone); }
public void CopyFrom(SpellCard other) { this.PlayEffect = other.PlayEffect; base.CopyFrom(other); }