Examples of ISteward


Examples of ch.sahits.game.openpatrician.model.building.ISteward

  @Override
  public void notify(DateObject date) {   
    ITradingOffice office = player.findTradingOffice(city);
    int weekIndex = date.getDayInWeek();
    ISteward steward = office.getSteward();
    int dailyCost=0;
    if (steward!=null){
      dailyCost = (int) Math.rint(steward.getSalary()/7.0);
    }
    for (int i = weekIndex; i<stewardCostsDays.length;i++){
      this.stewardCostsDays[i] = dailyCost;
    }
    int sum = 0;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.