mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-13 03:31:22 +00:00
12 lines
259 B
C#
12 lines
259 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
public abstract class Op {
|
|
public abstract void Process(Instruction aInstruction);
|
|
}
|
|
}
|