chuck.js/app/Game/Client/View/Views/PixiView.js
2013-12-18 01:12:23 +01:00

22 lines
468 B
JavaScript
Executable file

define([
"Game/Client/View/Views/AbstractView",
"Game/Client/View/DomController",
"Lib/Vendor/Pixi",
"Game/Config/Settings"
],
function (Parent, DomController, Pixi, Settings) {
function PixiView () {
Parent.call(this);
}
PixiView.prototype = Object.create(Parent.prototype);
PixiView.prototype.init = function() {
Parent.prototype.init.call(this);
};
return PixiView;
});