From 0828087e70cdfe177cb4045d6511f5baa85b2aae Mon Sep 17 00:00:00 2001 From: Robin Rolf Date: Sun, 19 Sep 2021 09:37:13 +0200 Subject: [PATCH] NetworkLoop needs to be public to expose events (#2925) See ff34a50fdfd783548e78171301df431324d8bb32 and #2826 --- Assets/Mirror/Runtime/NetworkLoop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Runtime/NetworkLoop.cs b/Assets/Mirror/Runtime/NetworkLoop.cs index 4d40091db..73eb01b49 100644 --- a/Assets/Mirror/Runtime/NetworkLoop.cs +++ b/Assets/Mirror/Runtime/NetworkLoop.cs @@ -40,7 +40,7 @@ namespace Mirror { - internal static class NetworkLoop + public static class NetworkLoop { // helper enum to add loop to begin/end of subSystemList internal enum AddMode { Beginning, End }