mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 20:58:56 +00:00
26 lines
672 B
JavaScript
26 lines
672 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Physics.Matter.Components
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Bounce: require('./Bounce'),
|
|
Collision: require('./Collision'),
|
|
Force: require('./Force'),
|
|
Friction: require('./Friction'),
|
|
Gravity: require('./Gravity'),
|
|
Mass: require('./Mass'),
|
|
Sensor: require('./Sensor'),
|
|
SetBody: require('./SetBody'),
|
|
Sleep: require('./Sleep'),
|
|
Static: require('./Static'),
|
|
Transform: require('./Transform'),
|
|
Velocity: require('./Velocity')
|
|
|
|
};
|