wip: patching osu files

This commit is contained in:
2025-02-18 21:47:55 +01:00
parent f31126e2b1
commit b7f24e897e
4 changed files with 25 additions and 2 deletions

7
test/patch.test.ts Normal file
View File

@@ -0,0 +1,7 @@
const bs = require("bsdiff-bin")
(async () => {
bs.patch('./osu!.exe', './osu!patched.exe', './osu!patch.diff', function(err){
if(err) console.log("failed")
});
})();