Example #1
0
 void OnCourtCaseEvent(CourtCaseEvent e)
 {
     if (EvictionOrder)
     {
         float settlement = Rent * 4f;
         Purse.wealth -= settlement;
         Debug.Log("Case settled for $" + settlement.ToString());
         CompleteEviction();
     }
 }
Example #2
0
 void OnCourtCaseEvent(CourtCaseEvent e)
 {
     Show("Case settled for $", info);
 }