Ejemplo n.º 1
0
        private bool HandleCollision(FlameCell flame)
        {
            if (CheckCell2CellCollision(flame))
            {
                Blow();
                return(true);
            }

            return(false);
        }
Ejemplo n.º 2
0
        private bool HandleCollision(FlameCell flame)
        {
            if (CheckCell2CellCollision(flame))
            {
                Blow();
                return true;
            }

            return false;
        }
 public void SetFrom(FlameCell f)
 {
     cx = f.cx;
     cy = f.cy;
 }
Ejemplo n.º 4
0
 private bool HandleCollision(FlameCell cell)
 {
     GetField().KillPlayer(this);
     return true;
 }