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