Implemented basic inventory

This commit is contained in:
Thaum
2014-11-12 11:11:45 +00:00
parent acf05ecd78
commit d80fb19dfe
10 changed files with 99 additions and 5 deletions

View File

@@ -4,4 +4,4 @@ Container = function(name, owner){
this.name = name;
this.owner = owner;
this.isCarried = true;
}
};