13 lines
271 B
Go
13 lines
271 B
Go
package geagle
|
|
|
|
// Layer definition
|
|
type Layer struct {
|
|
Number int `xml:"number,attr"`
|
|
Name string `xml:"name,attr"`
|
|
Color int `xml:"color,attr"`
|
|
|
|
Fill int `xml:"fill,attr"`
|
|
Visible Boolean `xml:"visible,attr"`
|
|
Active Boolean `xml:"active,attr"`
|
|
}
|