entity.MetaEditor2.Indices.ReadReflexive C# (CSharp) Method

ReadReflexive() private method

private ReadReflexive ( ) : void
return void
        private void ReadReflexive()
        {
            bool openedMap = false;
            if (map.isOpen == false)
            {
                map.OpenMap(MapTypes.Internal);
                openedMap = true;
            }
            map.BR.BaseStream.Position = this._IndexedReflexiveOffset;
            this._IndexedReflexiveChunkCount = map.BR.ReadInt32();
            this._IndexedReflexiveTranslatedOffset = map.BR.ReadInt32() - meta.magic;
            if (openedMap == true)
                map.CloseMap();
        }