mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-14 20:27:21 +00:00
21 lines
566 B
C#
21 lines
566 B
C#
namespace EightBit
|
|
{
|
|
namespace Files
|
|
{
|
|
namespace Symbols
|
|
{
|
|
public class NamedSection : IdentifiableSection
|
|
{
|
|
public string? Name { get; private set; }
|
|
|
|
protected NamedSection() => _ = this._string_keys.Add("name");
|
|
|
|
public override void Parse(Parser parent, Dictionary<string, string> entries)
|
|
{
|
|
base.Parse(parent, entries);
|
|
this.Name = this.TakeString("name");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |