Exemplo n.º 1
0
 public bool MakeItRain(int sB, Wallet otherPerson)
 {
     if (sB > spaceBux && player)
         return false;
     else
     {
     otherPerson.Reward(sB);
     spaceBux -= sB;
         return true;
     }
 }