0.2.4 Updated pallette. /JL

This commit is contained in:
2022-12-19 23:11:34 +01:00
parent 46a9cbee3c
commit 41b05473b4
4 changed files with 689 additions and 333 deletions
+6 -3
View File
@@ -36,7 +36,12 @@ type (
Colorstruct struct {
Series struct {
XMLName xml.Name `xml:"series"`
Serie []string `xml:"serie"`
Serie []struct {
XMLName xml.Name `xml:"serie"`
Name string `xml:"name,attr"`
InStock bool `xml:"inStock"`
OnHand int `xml:"onHand"`
}
}
ColorIndex int `xml:"colorIndex,attr"`
ColorName string `xml:"colorname"`
@@ -50,8 +55,6 @@ type (
IsNeutral bool `xml:"isNeutral"`
IsGrayscale bool `xml:"isGrayscale"`
Disabled bool `xml:"disabled"`
InStock bool `xml:"inStock"`
OnHand int `xml:"onHand"`
}
Pegboards struct {