mirror of
https://github.com/fxkt-tech/liv
synced 2025-09-26 20:11:20 +08:00
10 lines
169 B
Go
10 lines
169 B
Go
package shelf
|
|
|
|
type ShelfOption func(*TrackData)
|
|
|
|
func WithStageSize(w, h int32) ShelfOption {
|
|
return func(td *TrackData) {
|
|
td.stageWidth, td.stageHeight = w, h
|
|
}
|
|
}
|