fixed syntax errors

This commit is contained in:
Jeena Paradies 2012-07-22 03:05:04 +02:00
parent 11c642fd7a
commit d73d6b73e1
3 changed files with 4 additions and 4 deletions

View file

@ -7,8 +7,8 @@ define([
function(HttpServer, Socket, Coordinator) { function(HttpServer, Socket, Coordinator) {
function Server(options) { function Server(options) {
this.coordinator = new Coordinator(); coordinator = new Coordinator();
this.httpServer = new HttpServer(options); httpServer = new HttpServer(options);
this.socket = new Socket(httpServer.getServer(), options, coordinator); this.socket = new Socket(httpServer.getServer(), options, coordinator);
} }

View file

@ -3,7 +3,7 @@ define([
"Game/Core/Physics/Engine", "Game/Core/Physics/Engine",
"Game/Config/Settings", "Game/Config/Settings",
"Game/Core/Control/InputController", "Game/Core/Control/InputController",
"Lib/Unilities/RequestAnimFrame", "Lib/Utilities/RequestAnimFrame",
"Game/Server/NotificationCenter" "Game/Server/NotificationCenter"
], ],

View file

@ -1,5 +1,5 @@
define([ define([
"Game/Core/Protocol/Helper" "Game/Core/Protocol/Helper",
"Game/Server/NotificationCenter" "Game/Server/NotificationCenter"
], ],