Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
mterwoord_cp 999a4906b7
2009-09-29 16:23:10 +00:00

19 lines
478 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace Cosmos.IL2CPU.ILOpCodes {
public class OpMethod: ILOpCode {
public MethodBase Value;
public uint ValueUID;
public MethodBase BaseMethod;
public uint BaseMethodUID;
public OpMethod(Code aOpCode, int aPos, int aNextPos, MethodBase aValue)
: base(aOpCode, aPos, aNextPos) {
Value = aValue;
}
}
}