phaser/src/input/index.js
2018-01-31 13:54:44 +00:00

16 lines
371 B
JavaScript

/**
* @namespace Phaser.Input
*/
module.exports = {
Gamepad: require('./gamepad'),
InputManager: require('./InputManager'),
InputPlugin: require('./InputPlugin'),
InteractiveObject: require('./InteractiveObject'),
Keyboard: require('./keyboard'),
Mouse: require('./mouse'),
Pointer: require('./Pointer'),
Touch: require('./touch')
};