added more libs and fixed build script

This commit is contained in:
2026-02-24 17:54:09 -05:00
parent 415064480a
commit 5b2e5eac65
7 changed files with 396 additions and 406 deletions

View File

@@ -0,0 +1,9 @@
local deflate=require("LibDeflate")
local lib={}
lib.compress=function(data)
return deflate:CompressDeflate(data)
end
lib.decompress=function(data)
return deflate:DecompressDeflate(data)
end
return lib