refactored Server and Lobby

This commit is contained in:
Jeena 2014-03-01 14:07:03 +01:00
parent 42475c9b38
commit d83376d5c7
26 changed files with 29 additions and 29 deletions

View file

@ -1,4 +1,4 @@
GLOBALS = { context: "Server" };
GLOBALS = { context: "Channel" };
var requirejs = require('requirejs');
var inspector;
@ -23,7 +23,7 @@ var options = {
requirejs([
"Bootstrap/HttpServer",
"Bootstrap/Socket",
"Lobby/Coordinator"
"Server/Coordinator"
],
function (HttpServer, Socket, Coordinator) {