Beyond_Beyaan.Equipment.GetActualCost C# (CSharp) Метод

GetActualCost() публичный Метод

public GetActualCost ( int>.Dictionary techLevels, int shipSize, float costPerPower ) : float
techLevels int>.Dictionary
shipSize int
costPerPower float
Результат float
        public float GetActualCost(Dictionary<TechField, int> techLevels, int shipSize, float costPerPower)
        {
            float cost = GetCost(techLevels, shipSize);
            return (cost + GetPower(shipSize) * costPerPower);
        }