Files
Cultivation/src/utils/rsa.ts
fnrir 699eb2838e Implement patching
Quick note: Patching works, but the launcher attempts to unpatch the
game two times.
2023-08-23 15:36:16 +02:00

11 lines
241 B
TypeScript

import { invoke } from '@tauri-apps/api'
// Patch file from: https://github.com/34736384/RSAPatch/
export async function patchGame() {
return invoke('patch_game')
}
export async function unpatchGame() {
return invoke('unpatch_game')
}