Exemplo n.º 1
0
 public RentPaymentVM()
 {
     propertyAmount    = 450;
     PaymentReasonText = "You owe TheOnlyCletus  $" + propertyAmount + "  for rent.";
     YourAvailableCash = 100;
     PropertyImage     = ReferenceValues.MonopolyPropertyImageFromId(3);
 }
Exemplo n.º 2
0
        public PropertyManagerVM()
        {
            PropertyImage = ReferenceValues.MonopolyPropertyImageFromId(3);
            isMortgaged   = true;
            isUpgradable  = true;
            mortgagePrice = 33;
            CurrentRent   = 0;

            SetIconDisplay(1, new[] { 2, 2 }, 0);
        }
Exemplo n.º 3
0
        public BuyAuctionVM()
        {
            YourAvailableCash = 1500;
            CurrentPrice      = 60;
            BidPrice          = CurrentPrice;
            PropertyImage     = ReferenceValues.MonopolyPropertyImageFromId(3);
            isAuction         = false;
            TimerText         = 30;

            PurchaseVisibility = isAuction ? "HIDDEN" : "VISIBLE";
        }