public override void TakeDamage(int damage)
    {
        base.TakeDamage(damage);

        statManager.ChangePlayerHealth(-damage);
        GetComponent <SoundManager>().PlayHurtSound(0.1f);

        //Play hurt sound
        //Play hurt animation on UI
        //Update player health display
    }