Files
DiceCloud/app/imports/api/campaign/Encounter.js
2019-03-13 09:31:46 +02:00

13 lines
338 B
JavaScript

import SimpleSchema from 'simpl-schema';
import schema from '/imports/api/schema.js';
let Encounters = new Mongo.Collection("encounters");
let EncounterSchema = schema({
//an encounter is a single flow of time all parties in an encounter are in-sync time wise
});
Encounters.attachSchema(EncounterSchema);
export default Encounters;