Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
mterwoord_cp 89d4cee840
2009-09-15 10:10:03 +00:00

17 lines
387 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 OpMethod(Code aOpCode, int aPos, MethodBase aValue)
: base(aOpCode, aPos) {
Value = aValue;
}
}
}