Inheritance: UnityEngine.MonoBehaviour
 void Awake()
 {
     if (_instance == null)
     {
         _instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Debug.Log("TinderBoxObject exists, destroying duplicate");
         GameObject.Destroy(gameObject);
     }
 }
 void Awake()
 {
     if (_instance == null)
     {
         _instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Debug.Log("TinderBoxObject exists, destroying duplicate");
         GameObject.Destroy(gameObject);
     }
 }