mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-25 09:16:41 +00:00
18 lines
466 B
C#
18 lines
466 B
C#
namespace EightBit
|
|
{
|
|
namespace Files
|
|
{
|
|
namespace Symbols
|
|
{
|
|
//version major = 2, minor = 0
|
|
public sealed class Version(Parser container) : Section(container)
|
|
{
|
|
[SectionProperty("major")]
|
|
public int Major => this.TakeInteger("major");
|
|
|
|
[SectionProperty("minor")]
|
|
public int Minor => this.TakeInteger("minor");
|
|
}
|
|
}
|
|
}
|
|
} |