using UnityEngine; namespace Scampz.GameJam { public class Singleton : MonoBehaviour { void Awake() { DontDestroyOnLoad(gameObject); } } }