Ejemplo n.º 1
0
    private void CreateNewAirPower(int power)
    {
        currentAirPower  = airPowers[power];
        currentPowerAmmo = 0;

        for (int i = 0; i < currentAirPower.maxPowerUses; i++)
        {
            AddAirPowerImage();
        }
    }
Ejemplo n.º 2
0
    private void CreateNewAirPower()
    {
        currentAirPower  = GetNewAirPowerRandom();
        currentPowerAmmo = 0;

        for (int i = 0; i < currentAirPower.maxPowerUses; i++)
        {
            AddAirPowerImage();
        }
    }