LibMinecraft.Level.McLevelTileEntities.LoadSection C# (CSharp) Method

LoadSection() private method

private LoadSection ( NbtTag section ) : void
section NbtTag
return void
        internal void LoadSection(NbtTag section)
        {
            // Make sure we're passed a TAG_List named "TileEntities"
            if (section is NbtList && section.Name == "TileEntities")
            {
                //NbtList list = (NbtList) section;
            }
        }