We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae38de commit 6f0d8caCopy full SHA for 6f0d8ca
MLAPI/MonoBehaviours/Core/NetworkingManager.cs
@@ -70,13 +70,23 @@ public uint MyClientId
70
/// <summary>
71
/// Gets a list of connected clients
72
/// </summary>
73
- public List<NetworkedClient> ConnectedClients
+ public List<NetworkedClient> ConnectedClientsList
74
{
75
get
76
77
return connectedClientsList;
78
}
79
80
+ /// <summary>
81
+ /// Gets a dictionary of connected clients
82
+ /// </summary>
83
+ public Dictionary<uint, NetworkedClient> ConnectedClients
84
+ {
85
+ get
86
87
+ return connectedClients;
88
+ }
89
90
internal readonly HashSet<uint> pendingClients = new HashSet<uint>();
91
internal bool _isServer;
92
internal bool _isClient;
0 commit comments