Cosmos/source/Indy.IL2CPU.IL/MethodFooterOp.cs
2007-09-03 13:32:32 +00:00

12 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL {
public abstract class MethodFooterOp: Op {
public MethodFooterOp(Mono.Cecil.Cil.Instruction aInstruction, MethodInformation aMethodInfo)
: base(aInstruction, aMethodInfo) {
}
}
}