Cosmos/source2/IL2PCU/Cosmos.IL2CPU/OpCodeAttribute.cs
kudzu_cp d005150077
2009-07-23 20:02:00 +00:00

16 lines
No EOL
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU {
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public class OpCodeAttribute : Attribute {
public readonly ILOpCode.Code OpCode;
public OpCodeAttribute(ILOpCode.Code aOpCode) {
OpCode = aOpCode;
}
}
}