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

Examples of ch.sahits.game.openpatrician.model.city.impl.Contributions.contribute()


  @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;
  }
  @Override
  public int getContribution(IPlayer player, IWare ware){
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.