From 6f2125d2cd1607b8fb70db652607adc84fd9346c Mon Sep 17 00:00:00 2001 From: miepzerino <o.skotnik@gmail.com> Date: Fri, 22 Dec 2023 19:40:59 +0000 Subject: [PATCH] Added drilling function to player --- 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