mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-22 12:45:53 +12:00
Replace hirunner with hilauncher.
This commit is contained in:
parent
1a8c418d36
commit
6bea119831
33 changed files with 317 additions and 3 deletions
18
Horse Isle Launcher/resources/app/main.js
Normal file
18
Horse Isle Launcher/resources/app/main.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue