LibiadaCore.Core.BaseChain.FillClone C# (CSharp) Method

FillClone() protected method

Fills the clone of chain with clones of alphabet and building.
protected FillClone ( BaseChain clone ) : void
clone BaseChain /// The clone. ///
return void
        protected void FillClone(BaseChain clone)
        {
            if (clone != null)
            {
                clone.building = (int[])building.Clone();
                clone.alphabet = (Alphabet)alphabet.Clone();
            }
        }