2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2018-01-31 13:54:44 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Physics
|
|
|
|
*/
|
2017-03-08 23:53:53 +00:00
|
|
|
|
2017-07-31 10:48:43 +00:00
|
|
|
module.exports = {
|
2018-01-17 03:41:58 +00:00
|
|
|
|
2017-11-08 17:18:41 +00:00
|
|
|
Arcade: require('./arcade'),
|
2017-07-31 10:48:43 +00:00
|
|
|
Impact: require('./impact'),
|
2018-02-09 15:23:33 +00:00
|
|
|
Matter: require('./matter-js')
|
2018-01-17 03:41:58 +00:00
|
|
|
|
2017-07-31 10:48:43 +00:00
|
|
|
};
|