Steamworks.SteamMatchmaking.GetLobbyGameServer C# (CSharp) Méthode

GetLobbyGameServer() public static méthode

returns the details of a game server set in a lobby - returns false if there is no game server set, or that lobby doesn't exist

public static GetLobbyGameServer ( CSteamID steamIDLobby, uint &punGameServerIP, ushort &punGameServerPort, CSteamID &psteamIDGameServer ) : bool
steamIDLobby CSteamID
punGameServerIP uint
punGameServerPort ushort
psteamIDGameServer CSteamID
Résultat bool
		public static bool GetLobbyGameServer(CSteamID steamIDLobby, out uint punGameServerIP, out ushort punGameServerPort, out CSteamID psteamIDGameServer) {
			InteropHelp.TestIfAvailableClient();
			return NativeMethods.ISteamMatchmaking_GetLobbyGameServer(steamIDLobby, out punGameServerIP, out punGameServerPort, out psteamIDGameServer);
		}