This is invoked when a match is joined.
The default implementation of this starts a client.
class MatchManager : NetworkManager { public override void OnMatchJoined(JoinMatchResponse matchInfo) { if (matchInfo.success) { StartClient(new MatchInfo(matchInfo)); } } }