1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00
Beef/BeefySysLib/util/Compression.h
2023-06-28 16:20:26 -04:00

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;