Forest_Client/Forest/Assets/PhxhSDK/AOT/HybridCLR/MethodExecutionInfo.cs

16 lines
331 B
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
using System.Reflection;
namespace PhxhSDK.AOT
{
public class MethodExecutionInfo
{
public MethodInfo method;
public int sequnence;
public MethodExecutionInfo(MethodInfo method, int sequnence)
{
this.method = method;
this.sequnence = sequnence;
}
}
}