mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 12:48:50 +00:00
17 lines
398 B
JavaScript
17 lines
398 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.Canvas
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
CanvasRenderer: require('./CanvasRenderer'),
|
|
GetBlendModes: require('./utils/GetBlendModes'),
|
|
SetTransform: require('./utils/SetTransform')
|
|
|
|
};
|