the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 13 lines 393 B view raw
1#pragma once 2#include <cell/spurs.h> 3 4class EdgeZLib 5{ 6 static void InitDeflate(); 7 static void InitInflate(); 8public: 9 static void Init(CellSpurs* pSpurs); 10 static void Shutdown(); 11 static bool Compress(void* pDestination, uint32_t* pDestSize, const void* pSource, uint32_t SrcSize); 12 static bool Decompress(void* pDestination, uint32_t* pDestSize, const void* pSource, uint32_t SrcSize); 13};