Exemple #1
0
    public void repairMotherShip()
    {
        _score -= 500 * (int)Math.Pow(2, repairCounter);
        UIManager.instance.setScore(_score.ToString("000000000"));

        repairCounter++;
        motherShip.addHealth(1);

        updateMenu();
    }