Cosmos/source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs
2017-08-07 15:04:16 -04:00

15 lines
362 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(int aEntryIndex = -1) {
EntryIndex = aEntryIndex;
if (aEntryIndex == -1) {
EntryIndex = null;
}
}
}
}