mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 20:58:56 +00:00
b25ff9e065
Also included build flag to allow it to be compiled into the standard lib if required (saves a bunch of KB in duplicated classes)
18 lines
464 B
JavaScript
18 lines
464 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.Cameras.Sprite3D
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Camera: require('./Camera'),
|
|
CameraManager: require('./CameraManager'),
|
|
OrthographicCamera: require('./OrthographicCamera'),
|
|
PerspectiveCamera: require('./PerspectiveCamera')
|
|
|
|
};
|