Exemplo n.º 1
0
    public void AddUnits(float nOfUnit, bool affectPlayer = true)
    {
        population += nOfUnit;
        UI.ActualizeUI();

        if (affectPlayer)
        {
            controllerData.AddUnits(nOfUnit);
        }
    }