mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
371 B
C#
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;
|
|
}
|
|
}
|
|
}
|