mirror of
https://github.com/photonstorm/phaser
synced 2025-01-26 03:45:08 +00:00
24 lines
635 B
JavaScript
24 lines
635 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.DOM
|
|
*/
|
|
|
|
var Dom = {
|
|
|
|
AddToDOM: require('./AddToDOM'),
|
|
DOMContentLoaded: require('./DOMContentLoaded'),
|
|
GetInnerHeight: require('./GetInnerHeight'),
|
|
GetScreenOrientation: require('./GetScreenOrientation'),
|
|
GetTarget: require('./GetTarget'),
|
|
ParseXML: require('./ParseXML'),
|
|
RemoveFromDOM: require('./RemoveFromDOM'),
|
|
RequestAnimationFrame: require('./RequestAnimationFrame')
|
|
|
|
};
|
|
|
|
module.exports = Dom;
|