Beispiel #1
0
 private void IncreaseRent(DayEnded dayended)
 {
     if (!RentPaidToday)
     {
         World.NavigateToScene("Evicted");
     }
     _currentRent.IncreaseByPercent(Convert.ToDecimal(0.15));
     RentPaidToday = false;
 }