update files

This commit is contained in:
nuintun
2015-11-26 15:16:32 +08:00
parent 0f6cc6bd35
commit a78ff09309
6 changed files with 171 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ var BrowserWindow = require('browser-window');
var windowControl = require('./bin/window-control');
var openDirectory = require('./bin/open-directory');
var AppConfigure = require('./bin/app-configure');
var emulator = require('./bin/emulator');
// keep a global reference of the window object, if you don't, the window will
// be closed automatically when the javascript object is GCed
@@ -87,4 +88,7 @@ app.on('ready', function (){
// app configure
new AppConfigure(mainWindow, mainTray);
// emulator start
emulator.start();
});