mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
23 lines
525 B
JavaScript
Executable file
23 lines
525 B
JavaScript
Executable file
define([
|
|
"Game/Client/View/ViewController",
|
|
"Game/Client/View/DomController",
|
|
"Lib/Vendor/Pixi",
|
|
"Game/Config/Settings",
|
|
"Game/Client/View/CameraController"
|
|
],
|
|
|
|
function (Parent, DomController, Pixi, Settings, CameraController) {
|
|
|
|
function PixiView () {
|
|
|
|
Parent.call(this);
|
|
}
|
|
|
|
PixiView.prototype = Object.create(Parent.prototype);
|
|
|
|
PixiView.prototype.init = function() {
|
|
Parent.prototype.init.call(this);
|
|
};
|
|
|
|
return PixiView;
|
|
});
|