2024-06-05 12:51:40 +01:00

16 lines
357 B
C#

namespace EightBit
{
namespace Files
{
namespace Symbols
{
// type id = 0, val = "800920"
public class Type : IdentifiableSection
{
public string Value => this.TakeString("val");
public Type() => _ = this._string_keys.Add("val");
}
}
}
}