// Update is called once per frame
        void FixedUpdate()
        {
            if (healthSystem.IsCharacterAlive())
            {
                ScanForMovementKeyDown();

                ScanForMouseDirection();
            }
        }
 bool IsPlayerAlive()
 {
     return(healthSystem.IsCharacterAlive());
 }