using UnityEngine; namespace JoeSiu.Common.Infrastructure.Runtime { public class DontDestroyOnLoad : MonoBehaviour { private void Awake() { DontDestroyOnLoad(gameObject); } } }