mirror of
https://github.com/PretendoNetwork/nex-go.git
synced 2025-04-02 11:02:14 -04:00
9 lines
182 B
Go
9 lines
182 B
Go
package nex
|
|
|
|
// NEXVersion represents a NEX library version
|
|
type NEXVersion struct {
|
|
Major int
|
|
Minor int
|
|
Patch int
|
|
GameSpecificPatch string
|
|
}
|