This commit is contained in:
Brandon Plank 2021-12-05 14:03:41 -05:00
parent 23541ae239
commit 79a62b5e2f
4 changed files with 30 additions and 20 deletions

View file

@ -1,5 +1,6 @@
require('v8-compile-cache');
const {app} = require('electron');
const {BrowserWindow} = require("electron-acrylic-window");
// Creating the Application Window and Calling all the Functions
function CreateWindow() {
@ -19,7 +20,7 @@ function CreateWindow() {
app.on('ready', () => {
if (app.isQuiting) { app.quit(); return; }
console.log('[Cider] Application is Ready. Creating Window.')
CreateWindow()
});