mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 13:18:49 +00:00
18 lines
395 B
JavaScript
18 lines
395 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.WebGL
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
Utils: require('./Utils'),
|
||
|
WebGLPipeline: require('./WebGLPipeline'),
|
||
|
WebGLRenderer: require('./WebGLRenderer')
|
||
|
|
||
|
};
|