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