mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 23:24:31 +02:00
12 lines
205 B
C++
12 lines
205 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
class MULTIMC_LOGIC_EXPORT GZip
|
|
{
|
|
public:
|
|
static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
};
|
|
|