summaryrefslogtreecommitdiff
path: root/Settings/Settings.go
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-13 12:32:15 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2025-12-13 12:32:15 +0500
commitae11ed555cb350ea4c11fc1625f4a56229969ddd (patch)
tree1d02b84131b713a2eed9a332ffac51997b0ec285 /Settings/Settings.go
parent4b8ef84059e772ef7636c451356680ec5b0983c4 (diff)
Tracks meta
Diffstat (limited to 'Settings/Settings.go')
-rw-r--r--Settings/Settings.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/Settings/Settings.go b/Settings/Settings.go
index e859677..bd22056 100644
--- a/Settings/Settings.go
+++ b/Settings/Settings.go
@@ -10,10 +10,16 @@ const settingsLocation = "Settings.json"
type Settings struct {
SongsLocation string
+ Distribution distributionOptions
}
var defaultSettings = Settings {
SongsLocation: "./Songs",
+ Distribution: distributionOptions{
+ RandomisationChance: 0.5,
+ MaxPointPercent: 0.75,
+ StartSnapPercent: 0.1,
+ },
}
func (base Settings) String() string {