phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
17 lines (15 loc) • 549 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Game Boot Event.
*
* This event is dispatched when the Phaser Game instance has finished booting, but before it is ready to start running.
* The global systems use this event to know when to set themselves up, dispatching their own `ready` events as required.
*
* @event Phaser.Core.Events#BOOT
* @since 3.0.0
*/
module.exports = 'boot';