ensl_gathers/lib/gather/gatherer.js
2015-07-24 14:34:02 +01:00

30 lines
No EOL
544 B
JavaScript

"use strict";
/*
* Implements Gatherer
*
* Stores necessary information including:
* - user data
* - voting preferences
* - leader status
* - Team: "lobby" "alien" "marine"
*/
var User = require("../user/user");
function Gatherer (user) {
this.leaderVote = null;
this.mapVote = null;
this.serverVote = null;
this.confirm = false;
this.id = user.id;
this.user = user;
this.leader = false;
this.team = "lobby";
}
Gatherer.prototype.voteForLeader = function (user) {
this.leaderVote = user.id;
};
module.exports = Gatherer;