mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-12 23:24:35 +01:00
11 lines
241 B
TypeScript
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')
|
|
}
|