示例#1
0
 public void GiveCarrot(Bunny bunny)
 {
     if (amountCarrots > 0)
     {
         UpdateCarrot(-1);
         bunny.InLove();
         if (OnChangeBunny != null)
         {
             OnChangeBunny();
         }
     }
 }