mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
24 lines
567 B
C#
24 lines
567 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 sealed class AsmMarkerAttribute : AsmLabelAttribute
|
|
{
|
|
private static string[] mAsmMarkers = new string[]
|
|
{
|
|
|
|
};
|
|
|
|
public AsmMarkerAttribute(AsmMarkerType aMarkerType) : base(mAsmMarkers[(int)aMarkerType])
|
|
{
|
|
}
|
|
}
|
|
|
|
public enum AsmMarkerType
|
|
{
|
|
|
|
}
|
|
}
|