ensl_gathers/lib/gather/gather.js

40 lines
516 B
JavaScript
Raw Normal View History

"use strict";
/*
* Implements Gather Model
*
* Gather States
* - Picking
* - Election
* - Selection
* - Done
*
*/
var Gatherer = require("./gatherer");
function Gather () {
if (!(this instanceof Gather)) {
return new Gather();
}
this.gatherers = [];
}
2015-07-22 23:30:14 +00:00
Gather.prototype.addGatherer = function (user) {
};
Gather.prototype.removeGatherer = function (user) {
};
Gather.prototype.moveToMarine = function (user) {
};
Gather.prototype.moveToAlien = function (user) {
};
module.exports = Gather;