Files
gd-editor-mutiyplayer/main.js
T
2026-03-17 20:32:03 -04:00

12 lines
222 B
JavaScript

const { app, BrowserWindow } = require("electron");
function createWindow() {
const win = new BrowserWindow({
width: 1000,
height: 700,
});
win.loadFile("index.html");
}
app.whenReady().then(createWindow);