goonscape/config/config.go
2025-02-14 13:35:09 +01:00

8 lines
94 B
Go

package config
type Config struct {
PlayMusic bool
}
var Current = Config{PlayMusic: true}