mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-04 09:30:38 +00:00
22 lines
528 B
C#
22 lines
528 B
C#
namespace EightBit
|
|
{
|
|
namespace Files
|
|
{
|
|
namespace Symbols
|
|
{
|
|
//version major = 2, minor = 0
|
|
public class Version : Section
|
|
{
|
|
public int Major => this.TakeInteger("major");
|
|
|
|
public int Minor => this.TakeInteger("minor");
|
|
|
|
public Version()
|
|
{
|
|
_ = this._integer_keys.Add("major");
|
|
_ = this._integer_keys.Add("minor");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |