Made background music and started on difficulty slider

This commit is contained in:
2026-01-22 23:18:33 +00:00
parent b3e5769758
commit 3c25ec932f
9 changed files with 253 additions and 28 deletions

View File

@@ -0,0 +1,12 @@
using UnityEngine;
namespace InterfaceOff.MainMenu
{
public class BackgroundMusic : MonoBehaviour
{
private void Start()
{
DontDestroyOnLoad(gameObject);
}
}
}