mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
fixed syntax errors
This commit is contained in:
parent
11c642fd7a
commit
d73d6b73e1
3 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
define([
|
define([
|
||||||
"Game/Core/Protocol/Helper"
|
"Game/Core/Protocol/Helper",
|
||||||
"Game/Server/NotificationCenter"
|
"Game/Server/NotificationCenter"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue