mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
16 lines
377 B
JavaScript
16 lines
377 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.Structs.Events
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
PROCESS_QUEUE_ADD: require('./PROCESS_QUEUE_ADD_EVENT'),
|
|
PROCESS_QUEUE_REMOVE: require('./PROCESS_QUEUE_REMOVE_EVENT')
|
|
|
|
};
|