Files
AppleHillsProduction/Assets/Scripts/Sound/AudioManager.cs

17 lines
283 B
C#
Raw Normal View History

2025-10-17 14:38:42 +02:00
using UnityEngine;
2025-10-20 13:57:38 +02:00
public class AudioManager : MonoBehaviour
2025-10-17 14:38:42 +02:00
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
2025-10-20 13:57:38 +02:00
// Update is called once per frame
void Update()
{
2025-10-17 14:38:42 +02:00
}
}