mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2026-05-12 02:25:00 +08:00
23 lines
395 B
Go
23 lines
395 B
Go
package config
|
|
|
|
type _GeneralConfig struct {
|
|
BaseConfig
|
|
Width float32
|
|
Height float32
|
|
Language string
|
|
AutoCheckUpdate bool
|
|
ShowSystemTray bool
|
|
}
|
|
|
|
func (c *_GeneralConfig) Name() string {
|
|
return "General"
|
|
}
|
|
|
|
var General = &_GeneralConfig{
|
|
Language: "zh-CN",
|
|
ShowSystemTray: false,
|
|
AutoCheckUpdate: true,
|
|
Width: 960,
|
|
Height: 480,
|
|
}
|