1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00
Beef/BeefySysLib/util/Compress.h

17 lines
266 B
C
Raw Normal View History

2021-11-14 18:01:37 -08:00
#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;