diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2025-12-13 12:32:15 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2025-12-13 12:32:15 +0500 |
| commit | ae11ed555cb350ea4c11fc1625f4a56229969ddd (patch) | |
| tree | 1d02b84131b713a2eed9a332ffac51997b0ec285 /Settings/Settings.go | |
| parent | 4b8ef84059e772ef7636c451356680ec5b0983c4 (diff) | |
Tracks meta
Diffstat (limited to 'Settings/Settings.go')
| -rw-r--r-- | Settings/Settings.go | 6 |
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 { |
