mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
420 B
C#
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;
|
|
}
|
|
}
|
|
}
|