void DestoryBullet(GameObject obj)
    {
        Health health = obj.GetComponent <Health>();

        if (health)
        {
            health.TakeDamage(damage);
        }
        pool.BulletDestory(gameObject);
    }