Splitted Client and Server Processors

This commit is contained in:
logsol 2012-07-13 17:13:01 +02:00
parent ae53d40c60
commit 8f38c6dcc6
4 changed files with 74 additions and 35 deletions

View file

@ -1,9 +1,9 @@
define(function() {
define(["Chuck/Game"], function(Game) {
function Channel(name) {
this.name = name;
this.users = {};
this.game = new Game();
// create game here
}