getCost() 공개 메소드

public getCost ( ) : float
리턴 float
예제 #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();
 }