mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
10 lines
288 B
C#
10 lines
288 B
C#
namespace EightBit.Files.Symbols
|
|
{
|
|
// mod id=0,name="sudoku.o",file=0
|
|
[Section("mod", "Modules")]
|
|
public sealed class Module(Parser container) : NamedSection(container)
|
|
{
|
|
[SectionReference("file")]
|
|
public Symbols.File? File { get; private set; }
|
|
}
|
|
} |