public RegularPlayer(EnumTypesOfPlayer type, string name)
 {
     regularsTries = new List <int>();
     StartRandom   = 19;
     TypeOfPlayer  = type;
     Name          = name;
     AllLists.AddToCollection(regularsTries);
     AllLists.AddToCollection(this);
 }
 public UberPlayer(EnumTypesOfPlayer type, string name)//
 {
     uberTries    = new List <int>();
     StartRandom  = 72;
     TypeOfPlayer = type;
     Name         = name;
     LastAnswer   = 39;
     AllLists.AddToCollection(uberTries);
     AllLists.AddToCollection(this);
 }