public void OnTriggerEnter2D(Collider2D col)
 {
     if (col.tag == "enemy")
     {
         End.GameOver();
         //Debug.Log("Hit!");
     }
 }