示例#1
0
 public void TapWall(int _hitDamage)
 {
     if (bossIce.isIceWallOn == true)
     {
         nCountBreakWall -= _hitDamage;
         if (nCountBreakWall == 0)
         {
             bossIce.ActiveIceWall();
         }
     }
 }