Ejemplo n.º 1
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
 }
Ejemplo n.º 2
0
    public void Init()
    {
        if (instance == null)
        {
            instance = this;

            Debug.Log("Drop Manager Init");
            enemyDrops = EnemyDropImporter.deserializeEnemyDrops();
            drops = ModifierImporter.getOfferingDictionary();
        }
    }