mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 13:18:49 +00:00
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2018 Photon Storm Ltd.
|
||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* The Game Resume Event.
|
||
|
*
|
||
|
* This event is dispatched when the game loop leaves a paused state and resumes running.
|
||
|
*
|
||
|
* @event Phaser.Game.Events#RESUME
|
||
|
*/
|
||
|
module.exports = 'resume';
|