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

16 lines
331 B
C#

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;
}
}
}