mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
23 lines
755 B
JavaScript
23 lines
755 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
if (typeof exports !== 'undefined') {
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
exports = module.exports = Phaser;
|
|
}
|
|
exports.Phaser = Phaser;
|
|
} else if (typeof define !== 'undefined' && define.amd) {
|
|
define('Phaser', (function() { return root.Phaser = Phaser; })() );
|
|
} else {
|
|
root.Phaser = Phaser;
|
|
}
|
|
|
|
return Phaser;
|
|
}).call(this);
|
|
|
|
/*
|
|
* "What matters in this life is not what we do but what we do for others, the legacy we leave and the imprint we make." - Eric Meyer
|
|
*/
|