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);
        }