From d43c291c837d1aa6a653ba0d455fe3ff2708579e Mon Sep 17 00:00:00 2001 From: miepzerino <o.skotnik@gmail.com> Date: Wed, 02 Apr 2025 08:41:13 +0000 Subject: [PATCH] #38 added minClusterSize to ores --- Assets/Scripts/Enums/SoundNames.cs | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Assets/Scripts/Enums/SoundNames.cs b/Assets/Scripts/Enums/SoundNames.cs index d8514c3..8f8b201 100644 --- a/Assets/Scripts/Enums/SoundNames.cs +++ b/Assets/Scripts/Enums/SoundNames.cs @@ -10,20 +10,24 @@ None = 0, #region music - MusicHappy, + MusicHappy = 1, + MusicMainMenu = 8, #endregion #region player sounds - PlayerDeathSound, - PlayerHit, + PlayerDeathSound = 2, + PlayerHit = 3, #endregion #region SFX - Money, + Money = 4, + ButtonOnHover = 5, + ButtonOnClick = 6, + ButtonOnSave = 7, #endregion } -- Gitblit v1.9.3