Skip to content

Instantly share code, notes, and snippets.

@piedoom
Created October 6, 2016 22:43
Show Gist options
  • Save piedoom/45792de986400cadabe9e6818e46377d to your computer and use it in GitHub Desktop.
Save piedoom/45792de986400cadabe9e6818e46377d to your computer and use it in GitHub Desktop.
"use strict";
var PIXI = require("pixi.js");
var App = (function () {
function App() {
}
App.Init = function () {
console.log(PIXI);
};
return App;
}());
window.onload = function () {
App.Init();
};
//# sourceMappingURL=app.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment