Cosmos/source/Cosmos.IL2CPU.API/AsmLabelAttribute.cs
José Pedro 27e7c21bbc g3
2017-07-29 16:25:57 +01:00

17 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.IL2CPU.API
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public sealed class AsmLabelAttribute : Attribute
{
public string Label { get; }
public AsmLabelAttribute(string aLabel)
{
Label = aLabel;
}
}
}