mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
16 lines
266 B
C++
16 lines
266 B
C++
#pragma once
|
|
|
|
#include "../Common.h"
|
|
#include "Array.h"
|
|
#include "Span.h"
|
|
|
|
NS_BF_BEGIN;
|
|
|
|
class Compression
|
|
{
|
|
public:
|
|
static bool Compress(Span<uint8> inData, Array<uint8>& outData);
|
|
static bool Decompress(Span<uint8> inData, Array<uint8>& outData);
|
|
};
|
|
|
|
NS_BF_END;
|