phaser/src/cameras/index.js

21 lines
348 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2022-02-28 14:29:51 +00:00
* @copyright 2022 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
2018-01-31 13:54:44 +00:00
/**
* @namespace Phaser.Cameras
*/
2019-05-09 10:49:44 +00:00
/**
* @namespace Phaser.Types.Cameras
*/
module.exports = {
Controls: require('./controls'),
Scene2D: require('./2d')
};