working towards usable new structure

This commit is contained in:
logsol 2012-07-22 17:54:27 +02:00
parent 3afc2fa66e
commit 815c63009f
15 changed files with 223 additions and 84 deletions

8
app/Game/Core/User.js Executable file
View file

@ -0,0 +1,8 @@
define(function() {
function User(id) {
this.id = id;
}
return User;
});