Remove vestigial device manager ()

This commit is contained in:
Eric Rosenbaum 2018-12-03 15:52:23 -05:00 committed by GitHub
parent ff9d16065b
commit 536305af1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 384 deletions
src/engine

View file

@ -18,7 +18,6 @@ const Variable = require('./variable');
// Virtual I/O devices.
const Clock = require('../io/clock');
const Cloud = require('../io/cloud');
const DeviceManager = require('../io/deviceManager');
const Keyboard = require('../io/keyboard');
const Mouse = require('../io/mouse');
const MouseWheel = require('../io/mouseWheel');
@ -323,7 +322,6 @@ class Runtime extends EventEmitter {
this.ioDevices = {
clock: new Clock(),
cloud: new Cloud(this),
deviceManager: new DeviceManager(),
keyboard: new Keyboard(this),
mouse: new Mouse(this),
mouseWheel: new MouseWheel(this),