mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-07-03 08:26:01 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
///
|
|
/// Created by Anonymous275 on 1/30/22
|
|
/// Copyright (c) 2021-present Anonymous275 read the LICENSE file for more info.
|
|
///
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
class Zlib {
|
|
public:
|
|
static std::string DeComp(std::string Compressed);
|
|
static std::string Comp(std::string Data);
|
|
}; |