Skip to content

Commit

Permalink
fix: making MessageInfo public instead of internal
Browse files Browse the repository at this point in the history
NetworkDiagnostics.MessageInfo constructor does not need to be internal so would be better instead to be public so anyone can use it
  • Loading branch information
James-Frowen committed Jun 29, 2022
1 parent 73b83b6 commit e6a4413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirage/Runtime/NetworkDiagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static class NetworkDiagnostics
/// </summary>
public readonly int count;

internal MessageInfo(object message, int bytes, int count)
public MessageInfo(object message, int bytes, int count)
{
this.message = message;
this.bytes = bytes;
Expand Down

0 comments on commit e6a4413

Please sign in to comment.