mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 04:38:51 +00:00
16 lines
353 B
JavaScript
16 lines
353 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.Renderer.Snapshot
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Canvas: require('./CanvasSnapshot'),
|
|
WebGL: require('./WebGLSnapshot')
|
|
|
|
};
|