32bit_jam_conjure/Assets/Scripts/DontDestroyOnLoad.cs
2022-10-30 18:03:09 -04:00

10 lines
152 B
C#

using UnityEngine;
public class DontDestroyOnLoad : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(this.gameObject);
}
}