mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
15 lines
357 B
C#
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;
|
|
}
|
|
}
|
|
}
|