public void TakeDamage(int damage)
        {
            health -= damage;
            if (health <= 0)
            {
                IsDead = true;
            }

            _damageIndicatorController.DisplayDamage(damage);
        }