Package ch.sahits.game.openpatrician.model.city.impl

Examples of ch.sahits.game.openpatrician.model.city.impl.Contributions


  }
  @Override
  public void moveIn(IPlayer player){
    IReputation rep = new Reputation(this,player);
    reputation.put(player, rep);
    playersContributions.put(player, new Contributions());
  }
View Full Code Here


   */
  @Override
  public int move(IWare ware, int amount,IPlayer player) {
    int moved = super.move(ware, amount,player);
    if (player!=null){ // possible from test or from the city itself
      Contributions contrib = playersContributions.get(player);
      contrib.contribute(ware, moved);
    }
    return moved;
  }
View Full Code Here

    }
    return moved;
  }
  @Override
  public int getContribution(IPlayer player, IWare ware){
    Contributions contribs = playersContributions.get(player);
    return contribs.getContribution(ware);
  }
View Full Code Here

TOP

Related Classes of ch.sahits.game.openpatrician.model.city.impl.Contributions

Copyright © 2018 www.massapicom. 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.