Ejemplo n.º 1
0
 public void DeductHealth(int x)
 {
     for (int i = 0; i < x; i++)
     {
         mFilled[mIndex].enabled = false;
         mIndex--;
         if (mIndex < 0)
         {
             // Kill Megaman
             mMegaMan.Die();
             break;
         }
     }
 }