mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-06-13 11:37:58 +00:00
8 lines
249 B
C#
8 lines
249 B
C#
namespace M6502.Symbols
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
internal sealed class SectionReferenceAttribute(string key, bool optional = false) : SectionPropertyAttribute(key, type: typeof(int), optional: optional)
|
|
{
|
|
}
|
|
}
|