phaser/src/input/index.js
2018-03-28 15:04:09 +01:00

22 lines
585 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 = {
CreateInteractiveObject: require('./CreateInteractiveObject'),
Gamepad: require('./gamepad'),
InputManager: require('./InputManager'),
InputPlugin: require('./InputPlugin'),
Keyboard: require('./keyboard'),
Mouse: require('./mouse'),
Pointer: require('./Pointer'),
Touch: require('./touch')
};