mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
17 lines
372 B
JavaScript
17 lines
372 B
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2019 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')
|
||
|
|
||
|
};
|