Ejemplo n.º 1
0
 public Group_Model(string gid, CreateGroup_Server createGroup, List <Player_Model> listPlayers, List <ArrayList> ready)
 {
     this.gid         = gid;
     this.createGroup = createGroup;
     this.listPlayers = listPlayers;
     this.ready       = ready;
 }
Ejemplo n.º 2
0
 public GroupTournament_Model(string id, CreateGroup_Server createGroup, List <Player_Model> players, List <string> ready)
 {
     this.id          = id;
     this.createGroup = createGroup;
     this.players     = players;
     this.ready       = ready;
 }
Ejemplo n.º 3
0
 public Group_Model(string gid, CreateGroup_Server createGroup, List <Player_Model> listPlayers)
 {
     this.gid         = gid;
     this.createGroup = createGroup;
     this.listPlayers = listPlayers;
 }