1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Support for building wegame specific version

This commit is contained in:
tobspr
2021-05-25 21:29:44 +02:00
parent 56214defaf
commit 291614cb3c
16 changed files with 895 additions and 419 deletions

View File

@@ -274,7 +274,10 @@ async function performFsJob(job) {
}
}
ipcMain.handle("fs-job", (event, arg) => performFsJob(arg));
ipcMain.on("fs-job", async (event, arg) => {
const result = await performFsJob(arg);
event.reply("fs-response", { id: arg.id, result });
});
steam.init(isDev);
steam.listen();