Beispiel #1
0
 public void mortgage_property(Property property)
 {
     properties_owned.Remove(property);
     properties_mortgaged.Add(property);
     money += property.mortgage();
     refresh_properties();
 }