mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 20:58:56 +00:00
17 lines
424 B
JavaScript
17 lines
424 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Renderer.Canvas
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
CanvasRenderer: require('./CanvasRenderer'),
|
|
GetBlendModes: require('./utils/GetBlendModes'),
|
|
SetTransform: require('./utils/SetTransform')
|
|
|
|
};
|