private void CostCuringLabelUpdate() { CostCuringLabel.Text = Zoo.ConvertMoney(CuringPrice); }
private int SatietyFirstValue() { return(MaxSatiety / 2 + Zoo.RandomInt(MaxSatiety / 4 + 1)); }
private void CostLvlupLabelUpdate() { CostLvlupLabel.Text = Zoo.ConvertMoney(LvlupPrice); }
private void TigerPriceLabelUpdate() { TigerPriceLabel.Text = Zoo.ConvertMoney(Tiger.BuyingPriceStatic); }
private int HelthFirstValue() { return(MaxHelth - Zoo.RandomInt(MaxHelth / 4 + 1)); }
private void WildcatPriceLabelUpdate() { WildcatPriceLabel.Text = Zoo.ConvertMoney(Wildcat.BuyingPriceStatic); }
private void WolfPriceLabelUpdate() { WolfPriceLabel.Text = Zoo.ConvertMoney(Wolf.BuyingPriceStatic); }
private void RaccoonPriceLabelUpdate() { RaccoonPriceLabel.Text = Zoo.ConvertMoney(Raccoon.BuyingPriceStatic); }
public void SetReference(Zoo ZooRef) { this.ZooRef = ZooRef; }
void RefreshLabelsInForm() { MainFormRef.RefreshMoneyLabel(Zoo.ConvertMoney(Zoo.Money)); MainFormRef.RefreshNewCagePriceLabel(Zoo.ConvertMoney(Cages.NextCagePrice)); }