mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
21 lines
No EOL
448 B
C#
21 lines
No EOL
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
[AttributeUsage(AttributeTargets.Class, Inherited=false, AllowMultiple=false)]
|
|
public class OpCodeAttribute: Attribute {
|
|
private readonly Code mOpCode;
|
|
public OpCodeAttribute(Code aOpCode) {
|
|
mOpCode = aOpCode;
|
|
}
|
|
|
|
public Code OpCode {
|
|
get {
|
|
return mOpCode;
|
|
}
|
|
}
|
|
}
|
|
} |