mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 04:38:51 +00:00
18 lines
419 B
JavaScript
18 lines
419 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2022 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Renderer.Events
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
POST_RENDER: require('./POST_RENDER_EVENT'),
|
|
PRE_RENDER: require('./PRE_RENDER_EVENT'),
|
|
RENDER: require('./RENDER_EVENT'),
|
|
RESIZE: require('./RESIZE_EVENT')
|
|
|
|
};
|