mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-16 22:20:16 +00:00
12 lines
208 B
C++
12 lines
208 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
class MULTIMC_LOGIC_EXPORT GZip
|
|
{
|
|
public:
|
|
static bool decompress(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
};
|
|
|