13 lines
209 B
C#
13 lines
209 B
C#
using UnityEngine;
|
|
|
|
namespace InterfaceOff.MainMenu
|
|
{
|
|
public class BackgroundMusic : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|
|
}
|