mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
20 lines
348 B
JavaScript
20 lines
348 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2022 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Cameras
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Types.Cameras
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Controls: require('./controls'),
|
|
Scene2D: require('./2d')
|
|
|
|
};
|