Files
DiceCloud/rpg-docs/Model/Inventory/Containers.js
2014-11-03 06:17:35 +00:00

7 lines
151 B
JavaScript

Containers = new Meteor.Collection('containers');
Container = function(name, owner){
this.name = name;
this.owner = owner;
this.isCarried = true;
}