cleaning up Server GameController

This commit is contained in:
Jeena Paradies 2012-07-22 02:02:23 +02:00
parent 9ac1d61487
commit 4e3f207f52
2 changed files with 25 additions and 60 deletions

View file

@ -9,10 +9,11 @@ define([
function(Parent, PhysicsEngine, ViewController, KeyboardController, requestAnimFrame) {
function GameController () {
this.me;
this.keyboardController;
Parent.apply(this, new PhysicsEngine());
this.me = null;
this.keyboardController = null;
this.viewController = new ViewController();
this.update();
}