Ejemplo n.º 1
0
    // --- METHODS ---
    public void AddShot()
    {
        shotCount++;

        tmController.UpdateText(shotCount);

        if (shotCount >= 7)
        {
            StartCoroutine(TooManyShots(shotCount));
        }
    }