mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-13 21:48:30 +08:00
16 lines
282 B
Go
16 lines
282 B
Go
package gui
|
|
|
|
import "fyne.io/fyne/v2"
|
|
|
|
var ConfigList = []ConfigLayout{&bascicConfig{}}
|
|
|
|
type ConfigLayout interface {
|
|
Title() string
|
|
Description() string
|
|
CreatePanel() fyne.CanvasObject
|
|
}
|
|
|
|
func AddConfigLayout(cfgs ...ConfigLayout) {
|
|
ConfigList = append(ConfigList, cfgs...)
|
|
}
|