Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 public ResistancePlayer()
 {
     playerID       = 0;
     playerRole     = 0;
     playerNickname = "JACK";
     playerNonNick  = "JACK";
     allegiance     = ALLEGIANCE.NONALIGNED;
     teamVote       = TEAMVOTE.NOTSUBMITTED;
     missionVote    = MISSIONVOTE.NOTSUBMITTED;
 }