void OnTriggerEnter2D(Collider2D coll)
 {
     if (coll.gameObject.tag == "Enemy Hit Area")
     {
         actionCtrl.TakeHit();
     }
 }