mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 17:44:45 +00:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
// Phaser.Cameras
|
|
|
|
module.exports = {
|
|
|
|
Camera: require('./2d/Camera'),
|
|
PerspectiveCamera: require('./3d/PerspectiveCamera'),
|
|
OrthographicCamera: require('./3d/OrthographicCamera'),
|
|
|
|
KeyControl: require('./controls/KeyControl'),
|
|
SmoothedKeyControl: require('./controls/SmoothedKeyControl')
|
|
|
|
};
|