コード例 #1
0
ファイル: SpellCard.cs プロジェクト: mathjeff/SCGSim
        public SpellCard Clone()
        {
            SpellCard clone = new SpellCard();

            clone.CopyFrom(this);
            return(clone);
        }
コード例 #2
0
ファイル: SpellCard.cs プロジェクト: mathjeff/SCGSim
 public void CopyFrom(SpellCard other)
 {
     this.PlayEffect = other.PlayEffect;
     base.CopyFrom(other);
 }