Cosmos/source/Indy.IL2CPU/Plugs/AssemblerMethod.cs
kudzu_cp 2ce9bbc646
2008-09-21 23:26:17 +00:00

9 lines
No EOL
219 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Indy.IL2CPU.Plugs {
public abstract class AssemblerMethod {
public abstract void Assemble(Assembler.Assembler aAssembler);
}
}