void OnParticleCollision(GameObject collision)
 {
     if (collision.tag == "Fire")
     {
         enemiesManager.OnEnemyDestroyed(this);
     }
 }