Skip to content

Commit

Permalink
Fix IsExternalInit
Browse files Browse the repository at this point in the history
  • Loading branch information
doombubbles committed Jun 12, 2023
1 parent 19e2f57 commit ff857d1
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion BloonsTD6 Mod Helper/GlobalUsings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,18 @@
global using Il2CppInterop.Runtime.InteropTypes;
global using Il2CppInterop.Runtime.Runtime;
global using Il2CppInterop.Runtime.InteropTypes.Arrays;
global using Il2Cpp;
global using Il2Cpp;
using System.ComponentModel;

// ReSharper disable once CheckNamespace
namespace System.Runtime.CompilerServices
{
/// <summary>
/// Reserved to be used by the compiler for tracking metadata.
/// This class should not be used by developers in source code.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
internal static class IsExternalInit
{
}
}

0 comments on commit ff857d1

Please sign in to comment.