32bit_jam_conjure/Assets/Scripts/MusicController.cs
2022-10-30 01:34:25 -04:00

12 lines
202 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MusicController : MonoBehaviour
{
void Awake()
{
DontDestroyOnLoad(this.gameObject);
}
}