using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.IL2CPU.ILOpCodes { public class OpSig : ILOpCode { public readonly UInt32 Value; public OpSig(Code aOpCode, int aPos, UInt32 aValue) : base(aOpCode, aPos) { Value = aValue; } } }