2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2018-02-12 16:01:20 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2018-01-31 13:54:44 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Cameras
|
|
|
|
*/
|
2018-01-16 15:06:47 +00:00
|
|
|
|
2019-05-09 10:49:44 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Types.Cameras
|
|
|
|
*/
|
|
|
|
|
2018-01-16 15:06:47 +00:00
|
|
|
module.exports = {
|
|
|
|
|
2018-01-18 00:08:38 +00:00
|
|
|
Controls: require('./controls'),
|
2018-08-23 12:18:25 +00:00
|
|
|
Scene2D: require('./2d')
|
2018-01-16 15:06:47 +00:00
|
|
|
|
|
|
|
};
|