Added phaser build and hellophaser sample
This commit is contained in:
15
src/pixi/Outro.js
Normal file
15
src/pixi/Outro.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @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', (function() { return root.PIXI = PIXI; })() );
|
||||
} else {
|
||||
root.PIXI = PIXI;
|
||||
}
|
||||
}).call(this);
|
||||
Reference in New Issue
Block a user