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