protected override void OnParse(VoidPtr address)
        {
            sMiscFSAura *hdr = (sMiscFSAura *)address;

            _boneIndex = hdr->_boneIndex;
            _x         = hdr->_x;
            _y         = hdr->_y;
            _width     = hdr->_width;
            _height    = hdr->_height;
        }
        protected override void OnWrite(VoidPtr address)
        {
            RebuildAddress = address;
            sMiscFSAura *header = (sMiscFSAura *)address;

            header->_boneIndex = _boneIndex;
            header->_height    = _height;
            header->_width     = _width;
            header->_x         = _x;
            header->_y         = _y;
        }