Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs
2017-08-03 15:17:34 -04:00

15 lines
357 B
C#

using System;
namespace Cosmos.IL2CPU.API.Attribs
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, AllowMultiple = true)]
public class AsmLabel : Attribute
{
public string Label { get; }
public AsmLabel(string aLabel)
{
Label = aLabel;
}
}
}