mirror of
https://github.com/photonstorm/phaser
synced 2024-12-21 02:23:29 +00:00
15 lines
No EOL
396 B
JavaScript
15 lines
No EOL
396 B
JavaScript
/**
|
|
* @author Mat Groves http://matgroves.com/ @Doormat23
|
|
*/
|
|
|
|
if (typeof exports !== 'undefined') {
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
exports = module.exports = PIXI;
|
|
}
|
|
exports.PIXI = PIXI;
|
|
} else if (typeof define !== 'undefined' && define.amd) {
|
|
define(PIXI);
|
|
} else {
|
|
root.PIXI = PIXI;
|
|
}
|
|
}).call(this); |