Files
DiceCloud/rpg-docs/Model/Inventory/Containers.js
2014-11-12 11:11:45 +00:00

7 lines
152 B
JavaScript

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