package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Oct 4, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Datafile struct {
XMLName xml.Name `xml:"datafile"`
Games []Game `xml:"game"`
}
type Game struct {
XMLName xml.Name `xml:"game"`
Name string `xml:"name,attr"`
Description string `xml:"description"`
Roms []Rom `xml:"rom"`
}
type Release struct {
XMLName xml.Name `xml:"release"`
Name string `xml:"name,attr"`
Region string `xml:"region,attr"`
}
type Rom struct {
XMLName xml.Name `xml:"rom"`
Name string `xml:"name,attr"`
Size int `xml:"size,attr"`
CRC string `xml:"crc,attr"`
MD5 string `xml:"md5,attr"`
SHA1 string `xml:"sha1,attr"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.