mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
18 lines
422 B
JavaScript
18 lines
422 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.Scenes
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
SceneManager: require('./SceneManager'),
|
|
ScenePlugin: require('./ScenePlugin'),
|
|
Settings: require('./Settings'),
|
|
Systems: require('./Systems')
|
|
|
|
};
|