11 lines
384 B
JavaScript
11 lines
384 B
JavaScript
// This file is required by the index.html file and will
|
|
// be executed in the renderer process for that window.
|
|
// All of the Node.js APIs are available in this process.
|
|
if (process.platform === 'darwin') {
|
|
window.globalMouse = require('osx-mouse')();
|
|
} else if (process.platform === 'win') {
|
|
window.globalMouse = require('win-mouse')();
|
|
}
|
|
|
|
var Cat = require('./Cat');
|