mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 12:48:50 +00:00
20 lines
374 B
JavaScript
20 lines
374 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Cameras
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Types.Cameras
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Controls: require('./controls'),
|
|
Scene2D: require('./2d')
|
|
|
|
};
|