Start Room

Overview

Starts the local player's room.

Only the room owners can start their rooms.

Example

NetworkClient.Lobby.StartRoom((successful, error) =>{
	if (successful) {
		Debug.Log("Started room.");
	}
	else {
		Debug.Log("Failed to start room " + error);
	}
});

Last updated