public CProducer(TimeSpan intervall, CMarketPlace mrkt, string name, TimeSpan spltime, TimeSpan tmToPrd, int shipThrsh) { actionIntervall = intervall; myMarket = mrkt; produceName = name; spoilTime = spltime; productionTime = tmToPrd; shippingThreshold = shipThrsh; totalCost += productionFixedCost; }
public CConsumer(int pQ, CMarketPlace mrkt) { myMarket = mrkt; purchaseQuantity = pQ; lastPurchase = CMainTicker.gameDateTime; }
public CConsumer(TimeSpan interval, CMarketPlace mrkt) { myMarket = mrkt; actionIntervall = interval; lastPurchase = CMainTicker.gameDateTime; }
public CConsumer(CMarketPlace mrkt) { myMarket = mrkt; lastPurchase = CMainTicker.gameDateTime; }