mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
16 lines
371 B
JavaScript
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')
|
|
|
|
};
|