Beispiel #1
0
    public void RemoveCrystal(Crystal _crystal)
    {
        crystalList.Remove(_crystal);

        ReceiveDamage(1, null);

        if (crystalList.Count == 0)
        {
            LM.InstaWin(true);
        }

        else
        {
            crystalList[0].ActivateCrystal();
        }
    }