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