Cosmos/source/Cosmos.IL2CPU.API/AsmLabelAttribute.cs
José Pedro 9757786744 g3
2017-08-01 21:21:04 +01:00

17 lines
420 B
C#

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