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

Examples of ch.sahits.game.openpatrician.model.personal.impl.Reputation


  public IReputation getReputation(IPlayer player){
    return reputation.get(player);
  }
  @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

TOP

Related Classes of ch.sahits.game.openpatrician.model.personal.impl.Reputation

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.