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

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