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

15 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.ILOpCodes {
public class OpSwitch : ILOpCode {
public readonly int[] BranchLocations;
public OpSwitch(Code aOpCode, int aPos, int aNextPos, int[] aBranchLocations)
: base(aOpCode, aPos, aNextPos) {
BranchLocations = aBranchLocations;
}
}
}