mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
18 lines
No EOL
410 B
JavaScript
Executable file
18 lines
No EOL
410 B
JavaScript
Executable file
const { app, BrowserWindow } = require('electron')
|
|
|
|
function createWindow () {
|
|
const win = new BrowserWindow({
|
|
width: 790,
|
|
height: 500,
|
|
webPreferences: {
|
|
nodeIntegration: true
|
|
}
|
|
})
|
|
|
|
win.loadFile('src/index.html')
|
|
win.setMenu(null)
|
|
win.setTitle("Horse Isle - Secret Land of Horses")
|
|
win.setIcon("favicon.ico")
|
|
}
|
|
|
|
app.whenReady().then(createWindow) |