added pixi view controller - prepared architecture for multiple view systems - e.g. three, ivank, pixi but havent implemented any new ones yet

This commit is contained in:
logsol 2013-12-16 03:10:59 +01:00
parent efc5bc23b7
commit f2fb716689
4 changed files with 221 additions and 102 deletions

View file

@ -0,0 +1,23 @@
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;
});