mirror of
https://github.com/photonstorm/phaser
synced 2025-01-25 19:35:15 +00:00
15 lines
443 B
JavaScript
15 lines
443 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* The Input Plugin Destroy Event.
|
|
*
|
|
* This internal event is dispatched by the Input Plugin when it is destroyed, signalling to all of its systems to destroy themselves.
|
|
*
|
|
* @event Phaser.Input.Events#DESTROY
|
|
* @since 3.0.0
|
|
*/
|
|
module.exports = 'destroy';
|