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

GetLobbyOwner() public static méthode

returns the current lobby owner

you must be a member of the lobby to access this

there always one lobby owner - if the current owner leaves, another user will become the owner

it is possible (bur rare) to join a lobby just as the owner is leaving, thus entering a lobby with self as the owner

public static GetLobbyOwner ( CSteamID steamIDLobby ) : CSteamID
steamIDLobby CSteamID
Résultat CSteamID
		public static CSteamID GetLobbyOwner(CSteamID steamIDLobby) {
			InteropHelp.TestIfAvailableClient();
			return (CSteamID)NativeMethods.ISteamMatchmaking_GetLobbyOwner(steamIDLobby);
		}