BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
zip.hpp
1#pragma once
2
3#include "../structs/zip.hpp"
4#include <span>
5#include <string_view>
6#include <vector>
7
8namespace BspParser::Zip {
9 struct ZipFileEntry {
11 std::string_view fileName;
12 std::span<const std::byte> data;
13 };
14
15 std::vector<ZipFileEntry> readZipFileEntries(std::span<const std::byte> zipData);
16}
Definition: BSPParser.hpp:27
Definition: zip.hpp:9