File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,15 +151,15 @@ internal set
151
151
/// <summary>
152
152
/// The callback to invoke once a client connects
153
153
/// </summary>
154
- public Action < ulong > OnClientConnectedCallback = null ;
154
+ public event Action < ulong > OnClientConnectedCallback = null ;
155
155
/// <summary>
156
156
/// The callback to invoke when a client disconnects
157
157
/// </summary>
158
- public Action < ulong > OnClientDisconnectCallback = null ;
158
+ public event Action < ulong > OnClientDisconnectCallback = null ;
159
159
/// <summary>
160
160
/// The callback to invoke once the server is ready
161
161
/// </summary>
162
- public Action OnServerStarted = null ;
162
+ public event Action OnServerStarted = null ;
163
163
/// <summary>
164
164
/// Delegate type called when connection has been approved
165
165
/// </summary>
@@ -172,7 +172,7 @@ internal set
172
172
/// <summary>
173
173
/// The callback to invoke during connection approval
174
174
/// </summary>
175
- public Action < byte [ ] , ulong , ConnectionApprovedDelegate > ConnectionApprovalCallback = null ;
175
+ public event Action < byte [ ] , ulong , ConnectionApprovedDelegate > ConnectionApprovalCallback = null ;
176
176
/// <summary>
177
177
/// The current NetworkingConfiguration
178
178
/// </summary>
You can’t perform that action at this time.
0 commit comments