11 lines
239 B
Go
11 lines
239 B
Go
package viewmodel
|
|
|
|
import (
|
|
"github.com/wagoodman/dive/dive/image"
|
|
)
|
|
|
|
type LayerSelection struct {
|
|
Layer *image.Layer
|
|
BottomTreeStart, BottomTreeStop, TopTreeStart, TopTreeStop int
|
|
}
|