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