Plugins: Implement ReentrantAttribute
This commit is contained in:
13
Il2CppInspector.Common/Plugins/API/ReentrantAttribute.cs
Normal file
13
Il2CppInspector.Common/Plugins/API/ReentrantAttribute.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Il2CppInspector.PluginAPI
|
||||
{
|
||||
/// <summary>
|
||||
/// Setting this attribute on an interface method will allow the method to be called again
|
||||
/// while it is already running, ie. it enables recursion. Disabled by default.
|
||||
/// </summary>
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class ReentrantAttribute : Attribute { }
|
||||
}
|
||||
Reference in New Issue
Block a user