Exemplo n.º 1
0
 public void SetMatchInfo(MatchInfo infos)
 {
     matchId          = infos.matchId;
     matchName.text   = "Match " + infos.matchId.ToString().Substring(0, 8);
     playerCount.text = infos.players + " / " + infos.maxPlayers;
 }
Exemplo n.º 2
0
 public void SetMatchInfo(MatchInfo infos)
 {
     matchId          = infos.matchId;
     matchName.text   = $"Match {infos.matchId.ToString().Substring(0, 8)}";
     playerCount.text = $"{infos.players} / {infos.maxPlayers}";
 }