Cosmos/source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs
José Pedro ad34bd4a2a g3
2017-08-07 19:21:02 +01:00

22 lines
490 B
C#

using System;
namespace Cosmos.IL2CPU.API.Attribs
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public sealed class BootEntry : Attribute
{
public int? EntryIndex { get; }
public BootEntry(bool aDefault = true, int aEntryIndex = 0)
{
if (aDefault)
{
EntryIndex = null;
}
else
{
EntryIndex = aEntryIndex;
}
}
}
}