blob: 45f07b2a48e0e0be4ad96a15ee9d93681a0f2628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// import reloadFix from './reload';
// import restartFix from './restart';
let fixes: Function[] = [];
export function deinitSteamFixes() {
fixes.forEach((deinit) => deinit());
}
export async function initSteamFixes() {
// fixes.push(await reloadFix());
// fixes.push(await restartFix());
}
|