mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-14 12:37:23 +00:00
10 lines
149 B
C++
10 lines
149 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
class GZip
|
|
{
|
|
public:
|
|
static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
};
|
|
|