mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-27 04:31:26 +00:00
16 lines
357 B
C#
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");
|
|
}
|
|
}
|
|
}
|
|
} |