iw4x-client/src/Utils/Compression.hpp
Edo e8e1543cea
[Utils]: Re-order namespaces (#576)
* [Utils]: Re-order namespaces

* [Steam]: Fix comp
2022-11-22 08:09:25 -06:00

16 lines
263 B
C++

#pragma once
#define CHUNK 16384
#define DEFLATE_ZLIB false
#define DEFLATE_ZSTD true
namespace Utils::Compression
{
class ZLib
{
public:
static std::string Compress(const std::string& data);
static std::string Decompress(const std::string& data);
};
}