using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Start() {
HostData[] hostData =
MasterServer.PollHostList();
foreach (HostData element
in hostData) {
Debug.Log(element.gameName +
" max spots: " + element.playerLimit);
}
}
}