phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
19 lines (14 loc) • 442 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2013-2023 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')
};