From 40ac185dc7a017d95771fe580c77eab20e663908 Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Tue, 08 Apr 2025 17:36:08 +0000
Subject: [PATCH] #46 added interactables
---
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.10.0