phaser/src/input/index.js
2018-02-12 16:01:21 +00:00

22 lines
573 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* @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')
};