mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Renamed Compress.cpp to Compression.cpp
This commit is contained in:
parent
2ead8e5377
commit
ba0ff23e9d
6 changed files with 9 additions and 9 deletions
16
BeefySysLib/util/Compression.h
Normal file
16
BeefySysLib/util/Compression.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#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;
|
Loading…
Add table
Add a link
Reference in a new issue