using UnityEngine; namespace BrewMonster.Scripts { public class ConsistentObjectContainer : MonoBehaviour { private void Awake() { DontDestroyOnLoad(gameObject); } } }