Example #1
0
    public static void SumOne()
    {
        int aux = int.Parse(counter.text) + 1;

        counter.text = aux + "";
        if (aux % 5 == 0)
        {
            enemiesSpawner.SpawnBigZombie();
        }
    }