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

Load() public method

Load world data from a file
public Load ( string fileName ) : void
fileName string
return void
        public void Load(string fileName)
        {
            StreamSerializer stream = mManger.ReadWorldStream(fileName);
            Load(stream);
            stream = null;
        }
        /// <summary>

Same methods

PageWorld::Load ( StreamSerializer stream ) : bool
PageWorld::Load ( Stream stream ) : void