getCost() public method

public getCost ( ) : float
return float
Ejemplo n.º 1
0
 private void updateCost()
 {
     modifiedCost = coreModule.getModuleCost();
     if (useAdapterCost)
     {
         modifiedCost += topModule.getModuleCost();
         modifiedCost += bottomModule.getModuleCost();
         modifiedCost += topDockModule.getModuleCost();
         modifiedCost += bottomDockModule.getModuleCost();
     }
     modifiedCost += solarModule.getCost();
 }