Axiom.Components.Paging.PageWorld.DestroySection C# (CSharp) Method

DestroySection() public method

Destroy a section of world.
public DestroySection ( string name ) : void
name string
return void
        public void DestroySection(string name)
        {
            PagedWorldSection section;
            if (mSections.TryGetValue(name, out section))
            {
                mSections.Remove(section.Name);
                section = null;
            }
        }
        /// <summary>

Same methods

PageWorld::DestroySection ( PagedWorldSection section ) : void