public ResistancePlayer(ulong ID, string playerName, string playerNonMen) { playerID = ID; playerRole = 0; playerNickname = playerName; playerNonNick = playerNonMen; allegiance = ALLEGIANCE.NONALIGNED; teamVote = TEAMVOTE.NOTSUBMITTED; missionVote = MISSIONVOTE.NOTSUBMITTED; }
public ResistancePlayer(ulong ID, string playerName, string playerNonMen, GAMEROLE role, ALLEGIANCE playerAllegiance) { playerID = ID; playerRole = role; playerNickname = playerName; playerNonNick = playerNonMen; allegiance = playerAllegiance; teamVote = TEAMVOTE.NOTSUBMITTED; missionVote = MISSIONVOTE.NOTSUBMITTED; }
public ResistancePlayer() { playerID = 0; playerRole = 0; playerNickname = "JACK"; playerNonNick = "JACK"; allegiance = ALLEGIANCE.NONALIGNED; teamVote = TEAMVOTE.NOTSUBMITTED; missionVote = MISSIONVOTE.NOTSUBMITTED; }