mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-30 12:50:19 +00:00
12 lines
269 B
C#
12 lines
269 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.IL2CPU.Profiler {
|
|
public class ILOpProfiler : Cosmos.IL2CPU.ILOp {
|
|
protected ILOpProfiler(ILOpCode aOpCode)
|
|
: base(aOpCode) {
|
|
}
|
|
}
|
|
}
|