private string GetEntities(Stream stream)
        {
            Lump lump = header.lumps[(int)LumpType.LUMP_ENTITIES];

            stream.Position = lump.offset;
            byte[] data = UtilityReader.ReadBytes(stream, lump.length);
            return(System.Text.Encoding.ASCII.GetString(data));
        }