mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
16 lines
No EOL
384 B
C#
16 lines
No EOL
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
public abstract class MethodHeaderOp: Op {
|
|
public abstract void Assemble(MethodDefinition aMethod);
|
|
|
|
public override void Assemble(Instruction aInstruction) {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |