Esempio n. 1
0
    void Awake()
    {
        if (instance != null)
        {
            Debug.LogWarning("More than one instance of manager found!");
            return;
        }

        instance = this;
    }
Esempio n. 2
0
 private void Awake()
 {
     _mysteryManager = MysteryManager.Instance;
 }
Esempio n. 3
0
 private void AlertMysteryManager()
 {
     MysteryManager.MysteryResolved(id);
 }