2014-02-28 09:30:53 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2014 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) {
|
2014-03-10 12:18:08 +00:00
|
|
|
define('Phaser', (function() { return root.Phaser = Phaser; }) ());
|
2014-02-28 09:30:53 +00:00
|
|
|
} else {
|
|
|
|
root.Phaser = Phaser;
|
|
|
|
}
|
2014-03-23 07:59:28 +00:00
|
|
|
}).call(this);
|