Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCodes/OpSingle.cs
mterwoord_cp 2521402306
2009-09-18 12:06:27 +00:00

15 lines
360 B
C#

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