mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
lib - Save - DoAction - ApplyDataset - GetLayer(s) main - do actions from commandline Improved test cases!
21 lines
300 B
Go
21 lines
300 B
Go
package ps
|
|
|
|
// type layer interface {
|
|
// Name() string
|
|
// TextItem() []string
|
|
// }
|
|
|
|
type ArtLayer struct {
|
|
Name string
|
|
TextItem string
|
|
Bounds [2][2]string
|
|
}
|
|
|
|
// func (a *ArtLayer) Name() string {
|
|
// return a.name
|
|
// }
|
|
|
|
// func (a *ArtLayer) TextItem() string {
|
|
// return a.textItem
|
|
// }
|