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

Examples of ch.sahits.game.openpatrician.model.building.impl.Storage


  public TradingOffice(IPlayer player, ICity city, int value){
    this.player=player;
    this.city = city;
    this.baseValue = value;
    this.weapons = new WeaponStorage();
    this.storage = new Storage(player, city);
    lastWeek = new BalanceSheet(city, player);
    currentWeek = new BalanceSheet((BalanceSheet) lastWeek);
    currentWeek.startUpdate();
    new PeriodicalTimeUpdater(EUpdateIntervalRegistration.WEEK, this);
  }
View Full Code Here

TOP

Related Classes of ch.sahits.game.openpatrician.model.building.impl.Storage

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.