mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-12 22:42:03 -04:00
Remove vestigial device manager (#1793)
This commit is contained in:
parent
ff9d16065b
commit
536305af1b
3 changed files with 0 additions and 384 deletions
src/engine
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue