From e19f9928fe783e6a98192f6f2f2e28d1398fe4aa Mon Sep 17 00:00:00 2001 From: Sky Swimmer Date: Wed, 8 Nov 2023 16:40:53 +0100 Subject: [PATCH] Correct import order --- Il2CppInterop.Runtime/Injection/InjectorHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInterop.Runtime/Injection/InjectorHelpers.cs b/Il2CppInterop.Runtime/Injection/InjectorHelpers.cs index b27cf93c..578a3db3 100644 --- a/Il2CppInterop.Runtime/Injection/InjectorHelpers.cs +++ b/Il2CppInterop.Runtime/Injection/InjectorHelpers.cs @@ -2,11 +2,11 @@ using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; +using System.IO; using System.Linq; using System.Reflection; using System.Reflection.Emit; using System.Runtime.InteropServices; -using System.IO; using System.Threading; using Il2CppInterop.Common; using Il2CppInterop.Common.Extensions;