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

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
{
}
}