phaser/src/physics/index.js

18 lines
365 B
JavaScript
Raw Normal View History

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 = {
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')
2017-07-31 10:48:43 +00:00
};