mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 04:38:51 +00:00
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Renderer.Snapshot
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Canvas: require('./CanvasSnapshot'),
|
|
WebGL: require('./WebGLSnapshot')
|
|
|
|
};
|