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

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

public GetActualSize ( int>.Dictionary techLevels, int shipSize, float spacePerPower ) : float
techLevels int>.Dictionary
shipSize int
spacePerPower float
Результат float
        public float GetActualSize(Dictionary<TechField, int> techLevels, int shipSize, float spacePerPower)
        {
            float size = GetSize(techLevels, shipSize);
            return (size + GetPower(shipSize) * spacePerPower);
        }