mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-31 19:51:20 +00:00
12 lines
204 B
C++
12 lines
204 B
C++
#ifndef COMPRESSIONUTIL_H
|
|
#define COMPRESSIONUTIL_H
|
|
|
|
#include "types.h"
|
|
|
|
namespace CompressionUtil
|
|
{
|
|
bool DecompressAreaLZO(u8 *src, u32 src_len, u8 *dst, u32 dst_len);
|
|
}
|
|
|
|
#endif // COMPRESSIONUTIL_H
|