From b7e275f02c2b876b48a4a0685951ba221a63856a Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Tue, 27 Jul 2021 22:12:48 +1000 Subject: [PATCH] Cleanup --- src/Core/Runtime/Il2Cpp/ICallManager.cs | 1 - src/Core/Runtime/Il2Cpp/Il2CppCoroutine.cs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Core/Runtime/Il2Cpp/ICallManager.cs b/src/Core/Runtime/Il2Cpp/ICallManager.cs index 81dc2fb..3a5ac60 100644 --- a/src/Core/Runtime/Il2Cpp/ICallManager.cs +++ b/src/Core/Runtime/Il2Cpp/ICallManager.cs @@ -7,7 +7,6 @@ using System.Runtime.InteropServices; namespace UnityExplorer.Core.Runtime.Il2Cpp { - [SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "External methods")] public static class ICallManager { [DllImport("GameAssembly", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] diff --git a/src/Core/Runtime/Il2Cpp/Il2CppCoroutine.cs b/src/Core/Runtime/Il2Cpp/Il2CppCoroutine.cs index c2ac01f..9601990 100644 --- a/src/Core/Runtime/Il2Cpp/Il2CppCoroutine.cs +++ b/src/Core/Runtime/Il2Cpp/Il2CppCoroutine.cs @@ -6,8 +6,8 @@ using System.Linq; using UnhollowerBaseLib; using UnityEngine; -// CREDIT HerpDerpenstine -// https://github.com/LavaGang/MelonLoader/blob/master/MelonLoader.Support.Il2Cpp/MelonCoroutines.cs +// Credit to HerpDerpenstine and knah +// https://github.com/LavaGang/MelonLoader/blob/master/SM_Il2Cpp/Coroutines.cs namespace UnityExplorer.Core.Runtime.Il2Cpp {